/* Shared design tokens, nav, footer, buttons and section atoms —
   mirrors index.html so every page shares one visual identity. */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --bg:      #F6F1E4;
  --surface: #FFFCF3;
  --green:   #395320;
  --orange:  #E87319;
  --text:    #1D2B12;
  --muted:   #7B8C6D;
  --border:  rgba(57,83,32,0.12);
  --r:       16px;
  --f:       'Outfit', sans-serif;
}

body { margin: 0; font-family: var(--f); background: var(--bg); color: var(--text); line-height: 1; -webkit-font-smoothing: antialiased; }
h1,h2,h3 { line-height: 1.08; letter-spacing: -0.022em; margin: 0; }
p { line-height: 1.7; margin: 0; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ── Buttons ── */
.btn { display: inline-block; text-decoration: none; border-radius: 100px; font-family: var(--f); font-weight: 700; cursor: pointer; border: none; transition: opacity .15s, transform .12s; line-height: 1; }
.btn:hover { opacity: .9; transform: translateY(-1px); }
.btn-orange { background: var(--orange); color: #fff; padding: 12px 26px; font-size: 14px; }
.btn-green  { background: var(--green);  color: #fff; padding: 15px 34px; font-size: 16px; }
.btn-outline{ background: transparent; color: var(--green); border: 2px solid var(--green); padding: 13px 28px; font-size: 15px; }
.btn-white  { background: #fff; color: var(--green); padding: 17px 44px; font-size: 16px; font-weight: 800; }
.btn-white svg { width: 15px; height: 15px; margin-right: 4px; vertical-align: middle; }
.btn-ghost { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.25); padding: 16px 34px; font-size: 15px; font-weight: 600; border-radius: 100px; text-decoration: none; transition: background .15s; display: inline-flex; align-items: center; gap: 8px; }
.btn-ghost:hover { background: rgba(255,255,255,.18); }
.btn-ghost svg { width: 15px; height: 15px; flex-shrink: 0; }
.cbtn-wa-ghost { background: rgba(34,197,94,.15); color: #22C55E; border: 1.5px solid rgba(34,197,94,.3); }
.cbtn-wa-ghost:hover { background: rgba(34,197,94,.22); }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  padding: 0 7vw; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: clamp(16px, 3vw, 32px);
  background: rgba(246,241,228,.9); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  container-type: inline-size;
  container-name: navbar;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; gap: 1px; }
.nav-logo-eyebrow { font-size: 10px; font-weight: 500; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.nav-logo-name    { font-size: 20px; font-weight: 800; color: var(--green); line-height: 1; }
.nav-links { display: flex; gap: clamp(16px, 2vw, 28px); list-style: none; margin: 0; padding: 0; }
.nav-links a { font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none; }
.nav-links a:hover { color: var(--text); }
.nav-links a.current { color: var(--green); }

/* ── Contact buttons ── */
.contact-btns { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.cbtn {
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
  border-radius: 100px; font-family: var(--f); font-weight: 600; font-size: 13px;
  padding: 10px 16px; cursor: pointer; border: none; white-space: nowrap;
  transition: opacity .15s, transform .12s; line-height: 1;
}
.cbtn:hover { opacity: .88; transform: translateY(-1px); }
.cbtn svg { width: 14px; height: 14px; flex-shrink: 0; }
.cbtn-call { background: var(--green); color: #fff; }
.cbtn-sms  { background: var(--surface); color: var(--text); border: 1.5px solid rgba(57,83,32,.2); }
.cbtn-wa   { background: #22C55E; color: #fff; }
.cbtn-enquire { background: var(--orange); color: #fff; }
.cbtn-enquire:hover { opacity: .9; transform: translateY(-1px); }
.nav-contact { gap: clamp(4px, 0.3vw, 6px); }
.nav-contact .cbtn { padding: clamp(7px, 0.5vw + 3px, 9px) clamp(10px, 0.7vw + 5px, 14px); font-size: 12px; }
.nav-contact .cbtn svg { width: 13px; height: 13px; }

@container navbar (max-width: 1180px) {
  .nav-contact .nav-lbl { display: none; }
  .nav-contact .cbtn { padding: 8px 10px; }
  .nav-contact { gap: 8px; }
}

/* ── Hamburger ── */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; padding: 9px 8px; cursor: pointer;
  border-radius: 10px; transition: background .15s;
}
.nav-hamburger:hover { background: rgba(57,83,32,.08); }
.nav-hamburger span { display: block; width: 22px; height: 2.5px; background: var(--green); border-radius: 2px; transition: transform .25s, opacity .2s; }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── Mobile menu overlay ── */
.mobile-menu {
  position: fixed; inset: 68px 0 0 0;
  background: rgba(246,241,228,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 99; padding: 12px 7vw 32px; flex-direction: column;
  opacity: 0; pointer-events: none; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease;
  display: none; overflow-y: auto;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.mobile-menu-link {
  font-size: 28px; font-weight: 800; color: var(--text); text-decoration: none;
  padding: 16px 0; border-bottom: 1px solid var(--border); letter-spacing: -0.025em;
  display: block; transition: color .15s, padding-left .15s;
}
.mobile-menu-link:last-of-type { border-bottom: none; }
.mobile-menu-link:hover { color: var(--green); padding-left: 6px; }
.mobile-menu-enquire {
  display: block; margin-top: 20px; background: var(--green); color: #fff;
  text-align: center; border-radius: 100px; padding: 17px; font-size: 16px;
  font-weight: 700; text-decoration: none; letter-spacing: -0.01em;
  transition: opacity .15s, transform .12s;
}
.mobile-menu-enquire:hover { opacity: .9; transform: translateY(-1px); }

/* ── Mobile bottom bar ── */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,252,243,0.96);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 10px 12px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 6px; align-items: stretch;
}
.mobile-bottom-bar .cbtn { flex: 1; justify-content: center; padding: 12px 4px; font-size: 12px; font-weight: 700; gap: 4px; }
.mobile-bottom-bar .cbtn svg { width: 13px; height: 13px; }
.mbb-enquire {
  flex: 1.3; display: flex; align-items: center; justify-content: center; gap: 4px;
  background: var(--orange); color: #fff; border-radius: 100px; font-size: 12px;
  font-weight: 700; text-decoration: none; padding: 12px 8px;
  transition: opacity .15s, transform .12s; white-space: nowrap;
}
.mbb-enquire:hover { opacity: .9; transform: translateY(-1px); }

/* ── Section atoms ── */
.section { padding: 100px 7vw; }
.section-alt  { background: var(--surface); }
.eyebrow { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
.h2 { font-size: clamp(30px,3.8vw,46px); font-weight: 800; margin-bottom: 14px; }
.lead { font-size: 18px; color: var(--muted); line-height: 1.65; max-width: 580px; }
.chips { display: flex; gap: 7px; flex-wrap: wrap; }
.chip { background: var(--surface); border: 1px solid rgba(57,83,32,.18); border-radius: 100px; padding: 7px 14px; font-size: 12px; font-weight: 500; color: var(--text); }

/* ── Cards reused across pages ── */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.testi { background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 30px; display: flex; flex-direction: column; }
.testi-stars { font-size: 15px; color: #D4900A; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text { font-size: 15px; color: var(--text); line-height: 1.75; margin-bottom: 24px; font-style: italic; flex: 1; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--green); }
.testi-source { font-weight: 400; color: var(--muted); }

.area-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.area-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 30px; }
.area-pc { font-size: 52px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 8px; opacity: .14; }
.area-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.area-list { font-size: 14px; color: var(--muted); line-height: 1.85; }

.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 48px; }
.why-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 24px; }
.why-bar { width: 28px; height: 3px; border-radius: 2px; background: var(--orange); margin-bottom: 18px; }
.why-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-card p  { font-size: 14px; color: var(--muted); line-height: 1.65; }

.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; max-width: 880px; margin: 0 auto; }
.pkg { background: var(--surface); border: 1.5px solid var(--border); border-radius: 22px; padding: 36px 30px; text-align: left; position: relative; transition: transform .15s, box-shadow .15s; }
.pkg:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(57,83,32,.12); }
.pkg-featured { border-color: var(--green); }
.pkg-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 16px; border-radius: 100px; white-space: nowrap; letter-spacing: .04em; }
.pkg-tier { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.pkg-price { display: flex; align-items: flex-start; line-height: 1; margin-bottom: 4px; }
.pkg-price sup { font-size: 22px; font-weight: 700; padding-top: 8px; }
.pkg-price big { font-size: 58px; font-weight: 900; letter-spacing: -0.03em; }
.pkg-duration { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.pkg-hr { height: 1px; background: var(--border); margin-bottom: 20px; }
.pkg-feat { font-size: 14px; color: var(--text); margin-bottom: 10px; padding-left: 22px; position: relative; }
.pkg-feat::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 800; }
.pkg-saving { display: inline-block; margin-top: 4px; background: rgba(232,115,25,.12); color: var(--orange); border-radius: 100px; padding: 4px 12px; font-size: 12px; font-weight: 700; }
.pkg-btns { margin-top: 20px; justify-content: flex-start; gap: 6px; }
.pkg-btns .cbtn { padding: 9px 13px; font-size: 12px; }
.pkg-btns .cbtn svg { width: 12px; height: 12px; }

.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 56px; position: relative; }
.steps::before { content:''; position: absolute; top: 27px; left: 7%; right: 7%; height: 1px; background: var(--border); z-index: 0; }
.step { text-align: center; }
.step-circle { width: 56px; height: 56px; border-radius: 50%; background: var(--surface); border: 2px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-size: 18px; font-weight: 800; color: var(--green); position: relative; z-index: 1; }
.step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.step p  { font-size: 13px; color: var(--muted); line-height: 1.65; }

/* ── FAQ ── */
.faq-list { max-width: 700px; margin: 0 auto; text-align: left; }
details { border-bottom: 1px solid var(--border); }
summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font-size: 16px; font-weight: 600; color: var(--text); user-select: none;
}
summary::-webkit-details-marker { display: none; }
.faq-icon { font-size: 22px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: transform .2s; }
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { font-size: 15px; color: var(--muted); line-height: 1.75; padding-bottom: 20px; }

/* ── CTA ── */
#cta { padding: 60px 7vw 100px; }
.cta-inner { background: var(--green); border-radius: 28px; padding: 80px 40px; text-align: center; }
.cta-inner .h2 { color: #fff; font-size: clamp(30px,4vw,52px); }
.cta-inner .lead { color: rgba(255,255,255,.65); margin: 0 auto 44px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-btns a { display: inline-flex; align-items: center; gap: 8px; }
.cta-btns svg { width: 15px; height: 15px; flex-shrink: 0; }
.cta-btns .btn-orange { padding: 16px 34px; font-size: 15px; font-weight: 700; }

/* ── Internal-linking cards (location/service/guide indexes) ── */
.link-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 48px; }
.link-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r); padding: 26px; text-decoration: none; transition: transform .15s, box-shadow .15s; display: block; }
.link-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(57,83,32,.1); }
.link-card h3 { font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.link-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.link-card .link-arrow { display: inline-block; margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--green); }

/* ── Footer ── */
footer {
  padding: 36px 7vw; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
}
.footer-logo-name { font-size: 18px; font-weight: 800; color: var(--green); }
.footer-logo-sub  { font-size: 11px; color: var(--muted); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); text-decoration: none; font-weight: 500; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

/* ── Mobile ── */
@media (max-width: 960px) {
  .nav-hamburger { display: flex; }
  .nav-contact   { display: none; }
  .nav-links     { display: none; }
  .mobile-menu   { display: flex; }
  .mobile-bottom-bar { display: flex; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }
  .section { padding: 72px 5vw; }
  .pkg-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr; }
  .area-grid { grid-template-columns: 1fr; }
  .link-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 56px 28px; }
  .cta-btns { flex-direction: column; align-items: center; }
  footer { flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { justify-content: center; gap: 16px; flex-wrap: wrap; }
}
@media (max-width: 560px) {
  .section { padding: 60px 5vw; }
  .h2 { font-size: clamp(26px,8vw,36px); }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .chips { gap: 6px; }
  .chip { font-size: 12px; padding: 6px 12px; }
  .pkg { padding: 28px 22px; }
  .pkg-price big { font-size: 48px; }
  .cta-inner { border-radius: 20px; }
  footer { padding: 32px 5vw; }
  .faq-list { max-width: 100%; }
  summary { font-size: 15px; }
  .nav { padding: 0 5vw; gap: 0; }
}
