:root {
  --nh-ink: #14201b;
  --nh-forest: #1f4d3a;
  --nh-leaf: #c6f26d;
  --nh-sand: #f3efe6;
  --nh-mist: #e7efe8;
  --nh-card: #ffffff;
  --nh-muted: #5c6b63;
  --nh-line: rgba(20, 32, 27, 0.12);
  --nh-radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--nh-ink);
  background:
    radial-gradient(circle at top left, rgba(198, 242, 109, 0.18), transparent 30%),
    linear-gradient(180deg, #f7f4ee 0%, #eef3ef 40%, #f7f4ee 100%);
}

/* Original header (.site-header + header.css) and hero (.hero-section + hero.css) take priority */

.hero-buttons .secondary-btn {
  cursor: pointer;
  border: 0;
}

.btn-primary, .pkg-card-cta, .btn-whatsapp, .btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: var(--nh-leaf);
  color: var(--nh-ink);
}

.btn-ghost {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 700;
  text-decoration: none;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 2;
}

.trust-item {
  background: var(--nh-card);
  border: 1px solid var(--nh-line);
  border-radius: var(--nh-radius);
  padding: 1rem 1.1rem;
  box-shadow: 0 10px 30px rgba(20,32,27,.06);
}

.trust-item strong {
  display: block;
  font-size: 1.35rem;
  font-family: var(--font-display);
}

.chip-row {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.chip {
  flex: 0 0 auto;
  background: var(--nh-card);
  border: 1px solid var(--nh-line);
  border-radius: 999px;
  padding: 0.65rem 1rem;
  text-decoration: none;
  color: inherit;
  font-weight: 600;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0.2rem 0 0;
}

.section-label {
  color: var(--nh-forest);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.filter-tabs button {
  border: 1px solid var(--nh-line);
  background: transparent;
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  cursor: pointer;
}

.filter-tabs button.active {
  background: var(--nh-forest);
  color: #fff;
  border-color: var(--nh-forest);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
}

.pkg-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.pkg-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  overflow: hidden;
  background: #e2e8f0;
}

.pkg-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pkg-card-tag, .pkg-card-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0f172a;
  color: #fff;
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  border-radius: 999px;
  font-weight: 700;
}

.pkg-card-discount {
  left: auto;
  right: 12px;
  background: #bbf7d0;
  color: #14532d;
}

.pkg-card-body {
  padding: 1rem 1rem 1.15rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.pkg-card-body h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin: 0;
}

.pkg-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.pkg-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  color: var(--nh-muted);
  font-size: 0.82rem;
}

.pkg-card-price del {
  color: #9aa59e;
  margin-right: 0.35rem;
}

.pkg-card-cta {
  margin-top: auto;
  background: #2563eb;
  color: #fff;
}

.nh-footer {
  margin-top: 3rem;
  background: var(--nh-ink);
  color: #e8efe9;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.nh-footer a {
  display: block;
  color: #c9d6ce;
  text-decoration: none;
  margin: 0.35rem 0;
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1rem;
  color: #9fb0a6;
}

/* Enquire modal — fixed overlay (without this, openEnquire freezes scroll and form stays off-screen) */
.enquire-modal[hidden] {
  display: none !important;
}
.enquire-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-sizing: border-box;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.enquire-dialog {
  position: relative;
  width: min(440px, 100%);
  margin: auto;
  background: #fff;
  color: var(--nh-ink);
  border-radius: 22px;
  padding: 1.35rem 1.25rem 1.25rem;
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.28);
  border: 1px solid rgba(20, 32, 27, 0.08);
}
.enquire-close {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}
.enquire-close:hover {
  background: #e2e8f0;
}
.enquire-dialog h2 {
  margin: 0 2rem 0.35rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}
.enquire-sub {
  margin: 0 0 1rem;
  color: var(--nh-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}
.enquire-dialog label {
  display: block;
  margin: 0.65rem 0 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #334155;
}
.enquire-dialog input,
.enquire-dialog textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #dbe3ea;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  font: inherit;
  font-size: 0.95rem;
  background: #f8fafc;
  color: #0f172a;
}
.enquire-dialog input:focus,
.enquire-dialog textarea:focus {
  outline: 2px solid rgba(47, 111, 237, 0.35);
  border-color: #93c5fd;
  background: #fff;
}
.enquire-dialog .btn-primary.full {
  width: 100%;
  margin-top: 1rem;
  min-height: 48px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #fff;
}
.enquire-status {
  margin: 0.75rem 0 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: #166534;
}
body.enquire-open .sticky-cta {
  visibility: hidden;
  pointer-events: none;
}

.sticky-cta[hidden] {
  display: none !important;
}
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 1100;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  width: min(440px, calc(100% - 1.5rem));
  max-width: calc(100vw - 1.5rem);
  padding: 0.4rem;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(20, 32, 27, 0.12);
  border-radius: 999px;
  box-shadow: 0 16px 36px rgba(20, 32, 27, 0.18);
  pointer-events: auto;
}
.sticky-cta a,
.sticky-cta button {
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 0 0.65rem;
  font-weight: 800;
  font-family: inherit;
  font-size: clamp(0.72rem, 2.6vw, 0.84rem);
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  background: #eef5f0;
  color: #0f3d2c;
  -webkit-tap-highlight-color: transparent;
}
.sticky-cta a i,
.sticky-cta button i {
  flex: 0 0 auto;
  font-size: 1rem;
}
.sticky-cta a.wa {
  background: #25d366;
  color: #052e16;
}
.sticky-cta button {
  background: #1f6b4a;
  color: #fff;
}
body:has(.sticky-cta:not([hidden])) {
  padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
}
@media (max-width: 640px) {
  .sticky-cta {
    left: max(0.5rem, env(safe-area-inset-left, 0px));
    right: max(0.5rem, env(safe-area-inset-right, 0px));
    bottom: calc(0.55rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    max-width: none;
    transform: none;
    border-radius: 18px;
    gap: 0.3rem;
    padding: 0.35rem;
  }
  .sticky-cta a,
  .sticky-cta button {
    min-height: 46px;
    padding: 0 0.45rem;
    font-size: 0.78rem;
  }
}

@media (max-width: 900px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .desktop-nav, .header-contact { display: none; }
}
