/* Sayo City Agrotourism — shared stylesheet. Design tokens + components + responsive rules. */

:root {
  --bg: #FBF8F1;
  --ink: #1C2620;
  --ink-dark: #16341F;
  --body: #4B5A50;
  --muted: #8A9690;
  --green: #1F4D34;
  --green-hover: #163923;
  --green-light: #2F6B47;
  --green-pale: #EEF5EF;
  --green-text-on-dark: #C7D8CC;
  --green-text-on-dark-light: #7FC79E;
  --gold: #C98A1B;
  --gold-hover: #B37A16;
  --gold-light: #E2A33D;
  --gold-pale: #FBF1DE;
  --white: #FFFFFF;
  --whatsapp: #25D366;

  --shadow-card: 0 10px 26px rgba(22, 52, 31, 0.06);
  --shadow-card-hover: 0 18px 36px rgba(22, 52, 31, 0.14);
  --shadow-md: 0 14px 30px rgba(22, 52, 31, 0.1);

  --container: 1280px;
  --section-x: 20px;
  --heading-font: 'Poppins', sans-serif;
  --body-font: 'Work Sans', sans-serif;
}

@media (min-width: 520px) { :root { --section-x: 24px; } }

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body-font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { font-family: var(--heading-font); margin: 0; }
img { max-width: 100%; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--gold); }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold-light); color: var(--ink); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold-light);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--green); color: #fff; padding: 12px 20px;
  border-radius: 0 0 10px 0; z-index: 999; font-weight: 700; font-size: 14px;
}
.skip-link:focus { left: 0; top: 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--section-x); }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(31, 77, 52, 0.1);
  box-shadow: 0 2px 16px rgba(22, 52, 31, 0.05);
}
.nav-row {
  max-width: var(--container); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px var(--section-x);
}
.brand { background: none; border: none; padding: 0; display: flex; align-items: center; gap: 10px; }
.brand img { height: 44px; width: auto; object-fit: contain; }
@media (min-width: 520px) { .brand img { height: 52px; } }

.desktop-nav { display: none; gap: 4px; align-items: center; flex-wrap: wrap; }
.desktop-nav a {
  font-size: 14px; font-weight: 600; color: var(--ink-dark); padding: 10px 12px; border-radius: 8px;
  font-family: var(--body-font); transition: background 0.15s;
}
.desktop-nav a:hover { background: var(--green-pale); color: var(--ink-dark); }
.desktop-nav a[aria-current="page"] { color: var(--gold); }
.nav-cta-desktop {
  display: none; align-items: center; gap: 8px; background: var(--gold); color: #fff; border: none;
  padding: 11px 22px; border-radius: 8px; font-weight: 700; font-size: 14px;
  box-shadow: 0 4px 14px rgba(201, 138, 27, 0.3); white-space: nowrap;
}
.nav-cta-desktop:hover { background: var(--gold-hover); color: #fff; }
.nav-toggle {
  display: flex; background: var(--green-pale); border: none; width: 42px; height: 42px; border-radius: 10px;
  align-items: center; justify-content: center; font-size: 18px; color: var(--green); font-weight: 700;
}
.mobile-nav-panel { display: none; padding: 8px var(--section-x) 18px; flex-direction: column; gap: 2px; border-top: 1px solid rgba(31, 77, 52, 0.1); }
.mobile-nav-panel.is-open { display: flex; }
.mobile-nav-panel a {
  font-size: 15px; font-weight: 600; color: var(--ink-dark); padding: 12px 6px; text-align: left;
  border-bottom: 1px solid rgba(31, 77, 52, 0.06);
}
.mobile-nav-panel a[aria-current="page"] { color: var(--gold); }
.mobile-nav-cta {
  display: block; text-align: center; margin-top: 12px; background: var(--gold); color: #fff; border: none;
  padding: 14px; border-radius: 8px; font-weight: 700; font-size: 14.5px;
}
.mobile-nav-cta:hover { background: var(--gold-hover); color: #fff; }
@media (min-width: 1200px) {
  .desktop-nav { display: flex; }
  .nav-cta-desktop { display: flex; }
  .nav-toggle { display: none; }
  .mobile-nav-panel { display: none !important; }
  body { padding-bottom: 0; }
  .mobile-wa-bar { display: none !important; }
}
@media (max-width: 1199px) {
  body { padding-bottom: 64px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; padding: 14px 24px; border-radius: 8px; font-weight: 700; font-size: 14px;
  font-family: var(--body-font); cursor: pointer; transition: background 0.2s, transform 0.2s; text-align: center;
}
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 10px 24px rgba(201, 138, 27, 0.35); }
.btn-gold:hover { background: var(--gold-hover); color: #fff; }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-hover); color: #fff; }
.btn-outline-light {
  background: rgba(255, 255, 255, 0.1); border: 1.5px solid rgba(255, 255, 255, 0.7); color: #fff;
  backdrop-filter: blur(4px);
}
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.2); color: #fff; }
.btn-pill { border-radius: 999px; }

/* ---------- Page hero banners ---------- */
.page-hero { position: relative; overflow: hidden; height: 300px; }
.page-hero.h-420 { height: 300px; }
.page-hero.h-240 { height: 220px; }
@media (min-width: 640px) {
  .page-hero.h-420 { height: 420px; }
  .page-hero.h-240 { height: 240px; }
}
.page-hero img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.page-hero-overlay {
  position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center;
  background: linear-gradient(180deg, rgba(22, 52, 31, 0.55), rgba(22, 52, 31, 0.8));
}
.page-hero-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--section-x); width: 100%; }
.page-hero.center .page-hero-overlay { text-align: center; }
.breadcrumb {
  font-size: 12px; color: #EAF3EC; display: flex; gap: 6px; align-items: center;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}
.page-hero.center .breadcrumb { justify-content: center; }
.breadcrumb a { color: #EAF3EC; }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb .current { color: #fff; font-weight: 600; }
.page-hero h1 {
  font-size: 21px; color: #fff; font-weight: 800; margin-top: 12px; max-width: 640px; line-height: 1.28;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55);
}
.page-hero.center h1 { margin-left: auto; margin-right: auto; }
.page-hero p {
  font-size: 13px; color: #EAF3EC; margin-top: 9px; max-width: 560px; line-height: 1.55;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
.page-hero.center p { margin-left: auto; margin-right: auto; }
@media (min-width: 640px) {
  .page-hero h1 { font-size: 34px; }
  .page-hero p { font-size: 14.5px; }
}

/* ---------- Home hero slider ---------- */
.home-hero { position: relative; height: min(520px, calc(100vh - 76px)); min-height: 380px; overflow: hidden; }
@media (min-width: 640px) { .home-hero { height: min(600px, calc(100vh - 76px)); } }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8, 20, 14, 0.72) 0%, rgba(8, 20, 14, 0.42) 45%, rgba(8, 20, 14, 0.12) 78%); z-index: 2; }
.hero-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; z-index: 3; padding-top: 20px; padding-bottom: 100px; }
@media (min-width: 1200px) { .hero-content { padding-bottom: 20px; } }
.hero-content-inner { max-width: var(--container); margin: 0 auto; padding: 0 var(--section-x); width: 100%; }
.hero-copy { max-width: 560px; padding-right: 76px; animation: fadeUp 0.6s ease both; }
@media (min-width: 640px) { .hero-copy { padding-right: 0; } }
.hero-eyebrow { color: var(--gold-light); font-weight: 700; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 14px; text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5); }
.hero-headline { font-size: 25px; line-height: 1.22; color: #fff; font-weight: 800; text-shadow: 0 4px 18px rgba(0, 0, 0, 0.55); }
@media (min-width: 640px) { .hero-headline { font-size: 44px; line-height: 1.18; } }
.hero-desc { font-size: 14px; line-height: 1.7; color: #EAF3EC; margin-top: 16px; max-width: 460px; text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5); }
@media (min-width: 640px) { .hero-desc { font-size: 15.5px; } }
.hero-actions { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-badge {
  position: absolute; top: 14px; right: 14px; width: 62px; height: 62px; border-radius: 50%; background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2); display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; border: 2.5px solid var(--gold-pale); z-index: 4;
}
@media (min-width: 640px) { .hero-badge { top: 24px; right: 24px; width: 100px; height: 100px; border-width: 3px; } }
.hero-badge-num { font-family: var(--heading-font); font-weight: 800; color: var(--green); font-size: 11px; line-height: 1; }
.hero-badge-txt { font-size: 6px; color: var(--body); font-weight: 700; margin-top: 2px; line-height: 1.2; }
@media (min-width: 640px) { .hero-badge-num { font-size: 16px; } .hero-badge-txt { font-size: 8px; margin-top: 3px; line-height: 1.3; } }
.hero-arrow {
  position: absolute; bottom: 20px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.15); border: 1px solid rgba(255, 255, 255, 0.35); color: #fff;
  font-size: 16px; backdrop-filter: blur(4px); z-index: 4; display: none;
}
.hero-arrow:hover { background: rgba(255, 255, 255, 0.28); }
.hero-arrow.prev { left: 20px; }
.hero-arrow.next { right: 20px; }
@media (min-width: 1200px) { .hero-arrow { display: block; } }
.hero-dots { position: absolute; bottom: 20px; left: 0; right: 0; display: flex; justify-content: center; gap: 10px; z-index: 4; }
@media (max-width: 1199px) { .hero-dots { bottom: 78px; } }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; border: none; padding: 0; background: rgba(255, 255, 255, 0.5); transition: background 0.3s; }
.hero-dot.is-active { background: var(--gold); }

/* ---------- Feature strip ---------- */
.feature-strip-wrap { max-width: 1160px; margin: 40px auto 0; padding: 0 var(--section-x); position: relative; z-index: 2; }
.feature-strip {
  background: #fff; border-radius: 24px; padding: 28px 20px; display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px 16px; box-shadow: 0 24px 50px rgba(22, 52, 31, 0.11); border: 1px solid rgba(31, 77, 52, 0.06);
}
@media (min-width: 520px) { .feature-strip { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 860px) { .feature-strip { grid-template-columns: repeat(6, 1fr); padding: 44px 38px; } }
.feature-item { text-align: center; }
.feature-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--gold-pale); border: 1.5px solid #E4CE9C;
  display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 6px 16px rgba(201, 138, 27, 0.15);
}
@media (min-width: 860px) { .feature-icon { width: 68px; height: 68px; } }
.feature-title { font-weight: 800; color: var(--ink-dark); font-size: 12.5px; margin-top: 12px; text-transform: uppercase; letter-spacing: 0.02em; }
.feature-desc { font-size: 12px; color: var(--body); margin-top: 6px; line-height: 1.55; }

/* ---------- Generic sections ---------- */
.section { max-width: var(--container); margin: 64px auto 0; padding: 0 var(--section-x); }
.section.first { margin-top: 40px; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.section-head-center { text-align: center; }
.eyebrow { color: var(--gold); font-weight: 700; font-size: 12.5px; letter-spacing: 0.06em; text-transform: uppercase; }
.section-title { font-size: 22px; color: var(--ink-dark); font-weight: 800; margin-top: 10px; }
@media (min-width: 640px) { .section-title { font-size: 28px; } }
.section-lead { font-size: 13.5px; color: var(--body); margin-top: 10px; }
.circle-link {
  background: #fff; border: 1px solid rgba(31, 77, 52, 0.2); color: var(--green); font-weight: 700; font-size: 16px;
  width: 40px; height: 40px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
}
.circle-link:hover { background: var(--green-pale); color: var(--green); }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); }
.grid-5 { grid-template-columns: repeat(2, 1fr); }
.grid-6 { grid-template-columns: repeat(2, 1fr); }
.grid-8-popact { grid-template-columns: repeat(2, 1fr); row-gap: 40px; column-gap: 16px; }
@media (min-width: 520px) {
  .grid-4 { grid-template-columns: repeat(3, 1fr); }
  .grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 860px) {
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
  .grid-5 { grid-template-columns: repeat(5, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .grid-8-popact { grid-template-columns: repeat(4, 1fr); column-gap: 18px; }
}
@media (min-width: 1024px) {
  .grid-6 { grid-template-columns: repeat(6, 1fr); }
}
.grid-services { grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 860px) { .grid-services { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Cards (generic) ---------- */
.card {
  background: #fff; border-radius: 20px; border: 1px solid rgba(31, 77, 52, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* ---------- Popular activities (home) ---------- */
.popact-tile { text-align: center; }
.popact-photo { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 1/1; }
.popact-photo img { width: 100%; height: 100%; object-fit: cover; }
.popact-badge {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%); width: 34px; height: 34px;
  border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}
.popact-label { font-weight: 700; color: var(--ink-dark); font-size: 12.5px; margin-top: 22px; }

/* ---------- Product carousel (home) ---------- */
.prod-carousel-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 16px; }
.carousel-arrows { display: flex; gap: 10px; }
.carousel-arrow-btn {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-pale); border: 1px solid rgba(31, 77, 52, 0.15);
  color: var(--green); font-size: 15px;
}
.carousel-arrow-btn:hover { background: var(--green); color: #fff; }
.prod-carousel { display: flex; gap: 20px; overflow-x: auto; margin-top: 28px; padding: 4px 4px 16px; scroll-snap-type: x proximity; }
.prod-carousel-card {
  flex: none; width: 200px; scroll-snap-align: start; background: #fff; border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(31, 77, 52, 0.08); transition: transform 0.25s, box-shadow 0.25s;
}
.prod-carousel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.prod-carousel-card img { width: 100%; height: 150px; object-fit: cover; }
.prod-carousel-body { padding: 16px; }
.prod-carousel-title { font-size: 14px; color: var(--ink-dark); font-weight: 700; line-height: 1.3; }
.prod-carousel-from { font-size: 11.5px; color: var(--body); margin-top: 8px; }
.prod-carousel-price { font-weight: 800; color: var(--gold); font-size: 16px; }

/* ---------- Stats band (home, dark) ---------- */
.stats-band { background: var(--ink-dark); margin-top: 64px; padding: 40px var(--section-x); }
.stats-band-grid { max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255, 255, 255, 0.1); }
@media (min-width: 520px) { .stats-band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .stats-band-grid { grid-template-columns: repeat(4, 1fr); } }
.stats-band-item { background: var(--ink-dark); padding: 20px; display: flex; align-items: center; gap: 16px; }
.stats-band-num { font-size: 24px; font-weight: 800; color: #fff; font-family: var(--heading-font); }
.stats-band-caption { font-size: 12px; color: var(--green-text-on-dark); margin-top: 4px; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: #fff; border-radius: 20px; padding: 26px; border: 1px solid rgba(31, 77, 52, 0.08); }
.testimonial-stars { color: var(--gold-light); font-size: 15px; letter-spacing: 2px; }
.testimonial-quote { font-size: 13.5px; color: var(--body); margin-top: 14px; line-height: 1.7; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.testimonial-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--green-pale); display: flex; align-items: center; justify-content: center; flex: none; }
.testimonial-name { font-weight: 700; color: var(--ink-dark); font-size: 13px; }
.testimonial-role { font-size: 11.5px; color: var(--muted); }

/* ---------- News editorial (home) ---------- */
.news-editorial { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; align-items: stretch; }
@media (min-width: 860px) { .news-editorial { grid-template-columns: 1.3fr 1fr; } }
.news-feature { position: relative; border-radius: 20px; overflow: hidden; min-height: 320px; cursor: pointer; }
.news-feature img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.news-feature-gradient { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(15, 35, 24, 0.88) 15%, rgba(15, 35, 24, 0.1) 65%); }
.news-feature-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; }
.news-feature-date { color: var(--gold-light); font-weight: 700; font-size: 12px; }
.news-feature-title { font-size: 19px; color: #fff; font-weight: 800; margin-top: 8px; line-height: 1.35; max-width: 440px; }
.news-feature-excerpt { color: #E7EFE9; font-size: 13px; margin-top: 8px; max-width: 440px; line-height: 1.5; }
.news-list { display: flex; flex-direction: column; gap: 14px; }
.news-list-item { display: flex; gap: 14px; background: #fff; border-radius: 14px; padding: 14px; border: 1px solid rgba(31, 77, 52, 0.08); cursor: pointer; transition: box-shadow 0.2s; }
.news-list-item:hover { box-shadow: 0 10px 22px rgba(22, 52, 31, 0.1); }
.news-list-item img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex: none; }
.news-list-date { font-size: 11px; color: var(--gold); font-weight: 700; }
.news-list-title { font-size: 13.5px; color: var(--ink-dark); margin-top: 6px; font-weight: 700; line-height: 1.35; }

/* ---------- Final CTA banner (home) ---------- */
.final-cta { position: relative; margin-top: 64px; min-height: 300px; overflow: hidden; }
.final-cta img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.final-cta-gradient { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(15, 35, 24, 0.88) 0%, rgba(15, 35, 24, 0.6) 55%, rgba(15, 35, 24, 0.35) 100%); }
.final-cta-inner { position: relative; max-width: var(--container); margin: 0 auto; padding: 48px var(--section-x); }
.final-cta h2 { font-size: 24px; color: #fff; font-weight: 800; max-width: 520px; }
@media (min-width: 640px) { .final-cta h2 { font-size: 30px; } }
.final-cta p { color: #E7EFE9; font-size: 14px; margin-top: 12px; max-width: 460px; line-height: 1.6; }
.final-cta-actions { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }

/* ---------- About: timeline ---------- */
.timeline { margin-top: 40px; position: relative; padding-left: 28px; border-left: 2px solid rgba(31, 77, 52, 0.15); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -36px; top: 2px; width: 16px; height: 16px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-pale); }
.timeline-dot.gold { background: var(--gold); box-shadow: 0 0 0 4px var(--gold-pale); }
.timeline-label { color: var(--gold); font-weight: 800; font-size: 12.5px; letter-spacing: 0.06em; }
.timeline-title { font-size: 15px; color: var(--ink-dark); font-weight: 700; margin-top: 6px; }
.timeline-desc { font-size: 13.5px; color: var(--body); margin-top: 6px; line-height: 1.7; }

/* ---------- Stat strips (thin cell rows) ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: rgba(31, 77, 52, 0.12); border-radius: 20px; overflow: hidden; }
@media (min-width: 520px) { .stat-strip { grid-template-columns: repeat(4, 1fr); } }
.stat-strip-cell { background: #fff; padding: 24px 16px; text-align: center; }
.stat-strip-num { font-size: 22px; font-weight: 800; color: var(--green); font-family: var(--heading-font); }
@media (min-width: 520px) { .stat-strip-num { font-size: 26px; } }
.stat-strip-label { font-size: 12px; color: var(--body); margin-top: 6px; }

/* ---------- Visi/Misi ---------- */
.vismis-card { border-radius: 24px; padding: 28px; }
.vismis-card.vision { background: var(--green-pale); }
.vismis-card.mission { background: var(--gold-pale); }
.vismis-card h3 { font-size: 18px; color: var(--ink-dark); font-weight: 700; }
.vismis-card p { font-size: 14px; color: var(--body); line-height: 1.7; margin-top: 12px; }

/* ---------- Nilai Teras (values) ---------- */
.value-card { position: relative; padding: 26px 20px 22px; background: #fff; border-radius: 20px; border: 1px solid rgba(31, 77, 52, 0.08); box-shadow: var(--shadow-card); transition: transform 0.25s, box-shadow 0.25s; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-hover); }
.value-ghost-num { position: absolute; top: 14px; right: 16px; font-family: var(--heading-font); font-weight: 800; font-size: 24px; color: rgba(31, 77, 52, 0.08); }
.value-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--green-pale); border: 2px solid var(--green); display: flex; align-items: center; justify-content: center; }
.value-icon.gold { background: var(--gold-pale); border-color: var(--gold); }
.value-title { font-weight: 800; color: var(--ink-dark); font-size: 15px; margin-top: 14px; }
.value-desc { font-size: 12.5px; color: var(--body); margin-top: 6px; line-height: 1.55; }

/* ---------- Credibility dark panel ---------- */
.credibility-panel { background: var(--ink-dark); border-radius: 32px; padding: 32px 24px; display: grid; grid-template-columns: 1fr; gap: 32px; align-items: center; }
@media (min-width: 700px) { .credibility-panel { grid-template-columns: 1fr 1fr; padding: 44px; } }
.credibility-panel h2 { font-size: 22px; color: #fff; font-weight: 800; margin-top: 8px; }
@media (min-width: 640px) { .credibility-panel h2 { font-size: 26px; } }
.credibility-panel p { color: var(--green-text-on-dark); font-size: 14px; line-height: 1.7; margin-top: 12px; }
.credibility-list { margin-top: 18px; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
.credibility-list li { color: #fff; font-size: 13.5px; display: flex; gap: 10px; }
.credibility-list li span { color: var(--gold-light); }
.credibility-panel img { width: 100%; height: 240px; object-fit: cover; border-radius: 22px; }
@media (min-width: 520px) { .credibility-panel img { height: 280px; } }

/* ---------- Org chart / target market ---------- */
.orgcard { background: #fff; border: 1px solid rgba(31, 77, 52, 0.1); border-radius: 20px; padding: 24px 20px; text-align: left; transition: transform 0.25s, box-shadow 0.25s; }
.orgcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.orgcard-icon { width: 48px; height: 48px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 18px rgba(31, 77, 52, 0.25); }
.orgcard-name { font-weight: 700; color: var(--ink-dark); font-size: 14.5px; margin-top: 16px; }
.orgcard-role { font-size: 12px; color: var(--gold); font-weight: 700; margin-top: 5px; }

.target-card { background: #fff; border: 1px solid rgba(31, 77, 52, 0.1); border-radius: 16px; padding: 20px 16px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px; transition: transform 0.25s, box-shadow 0.25s; }
.target-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.target-icon { width: 44px; height: 44px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; flex: none; }
.target-label { font-weight: 700; color: var(--ink-dark); font-size: 13px; line-height: 1.35; }

/* ---------- Services (Perkhidmatan) ---------- */
.service-card { background: #fff; border: 1px solid rgba(31, 77, 52, 0.1); border-radius: 24px; padding: 26px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
.service-title { font-size: 19px; color: var(--ink-dark); font-weight: 800; text-transform: uppercase; letter-spacing: 0.02em; }
@media (min-width: 640px) { .service-title { font-size: 24px; } }
.service-desc { font-size: 14px; color: var(--body); margin-top: 12px; line-height: 1.65; }
.service-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--gold); font-weight: 700; font-size: 13.5px; }

/* ---------- Process flow ---------- */
.process-flow { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
@media (min-width: 700px) { .process-flow { grid-template-columns: repeat(3, 1fr); } }
.process-item { text-align: center; padding: 0 12px; }
.process-num { width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff; font-weight: 800; font-family: var(--heading-font); display: flex; align-items: center; justify-content: center; margin: 0 auto; font-size: 16px; }
.process-title { font-size: 15px; color: var(--ink-dark); font-weight: 700; margin-top: 14px; }
.process-desc { font-size: 13px; color: var(--body); margin-top: 6px; line-height: 1.55; }

/* ---------- Facilities (Agro) ---------- */
.facility-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(31, 77, 52, 0.08); transition: transform 0.25s, box-shadow 0.25s; }
.facility-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.facility-card img { width: 100%; height: 150px; object-fit: cover; }
.facility-body { padding: 18px; }
.facility-name { font-size: 14.5px; color: var(--ink-dark); font-weight: 700; }
.facility-desc { font-size: 12.5px; color: var(--body); margin-top: 6px; line-height: 1.55; }

/* ---------- Tab pills (shared: agro/faq/galeri) ---------- */
.tab-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 28px; }
.tab-pill {
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 13px; border: 2px solid var(--green);
  background: transparent; color: var(--green); transition: background 0.2s, color 0.2s;
}
.tab-pill.is-active { background: var(--green); color: #fff; }
.underline-tab-row { display: flex; gap: 22px; justify-content: center; flex-wrap: wrap; border-bottom: 1px solid rgba(31, 77, 52, 0.1); }
.underline-tab {
  padding: 12px 2px; font-weight: 700; font-size: 13px; border: none; border-bottom: 2.5px solid transparent;
  background: none; color: var(--muted); transition: color 0.2s, border-color 0.2s;
}
.underline-tab.is-active { color: var(--ink-dark); border-bottom-color: var(--gold); }

/* ---------- Activity pricing cards (Agro) ---------- */
.activity-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(31, 77, 52, 0.08); display: flex; flex-direction: column; position: relative; transition: transform 0.25s, box-shadow 0.25s; }
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.activity-photo { position: relative; height: 130px; }
.activity-photo img { width: 100%; height: 100%; object-fit: cover; }
.activity-price {
  position: absolute; top: 12px; right: 12px; font-weight: 800; font-size: 12.5px; padding: 5px 12px; border-radius: 999px;
}
.activity-price.free { background: var(--green); color: #fff; }
.activity-price.paid { background: var(--gold-pale); color: var(--gold); }
.activity-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.activity-name { font-size: 14.5px; color: var(--ink-dark); font-weight: 700; }
.activity-desc { font-size: 12.5px; color: var(--body); line-height: 1.5; flex: 1; }
.activity-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.activity-tag { background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 999px; }
.activity-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 24px; }

/* ---------- Suitability (Agro) ---------- */
.suit-panel { background: var(--green-pale); border-radius: 32px; padding: 28px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; text-align: center; }
@media (min-width: 640px) { .suit-panel { grid-template-columns: repeat(4, 1fr); padding: 44px; } }
.suit-icon { width: 52px; height: 52px; border-radius: 15px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; margin: 0 auto; box-shadow: 0 8px 18px rgba(201, 138, 27, 0.3); }
.suit-title { font-size: 15px; color: var(--ink-dark); font-weight: 700; margin-top: 14px; }
.suit-desc { font-size: 12.5px; color: var(--body); margin-top: 6px; line-height: 1.5; }

/* ---------- Gallery teaser (Agro) ---------- */
.gallery-teaser img { width: 100%; height: 150px; object-fit: cover; border-radius: 16px; }
@media (min-width: 520px) { .gallery-teaser img { height: 170px; } }

/* ---------- FAQ accordion (shared) ---------- */
.faq-card { background: #fff; border: 1px solid rgba(31, 77, 52, 0.1); border-radius: 16px; overflow: hidden; transition: box-shadow 0.2s; }
.faq-card:hover { box-shadow: 0 8px 20px rgba(22, 52, 31, 0.08); }
.faq-toggle {
  width: 100%; text-align: left; background: none; border: none; padding: 18px 20px; display: flex;
  justify-content: space-between; align-items: center; gap: 12px; font-weight: 700; color: var(--ink-dark); font-size: 14px;
}
.faq-icon { color: var(--gold); font-size: 18px; flex: none; }
.faq-answer { display: none; padding: 0 20px 20px; font-size: 13.5px; color: var(--body); line-height: 1.65; }
.faq-card.is-open .faq-answer { display: block; }

/* ---------- Galeri masonry ---------- */
.masonry { columns: 2; column-gap: 14px; margin-top: 36px; }
@media (min-width: 640px) { .masonry { columns: 3; column-gap: 16px; } }
@media (min-width: 960px) { .masonry { columns: 4; } }
.masonry-item { break-inside: avoid; margin-bottom: 14px; border-radius: 16px; overflow: hidden; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-item[hidden] { display: none; }

/* ---------- News grid (Berita) ---------- */
.news-card { background: #fff; border-radius: 20px; overflow: hidden; border: 1px solid rgba(31, 77, 52, 0.08); transition: transform 0.25s, box-shadow 0.25s; }
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.news-card img { width: 100%; height: 160px; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-card-meta { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.news-card-cat { font-size: 11px; font-weight: 700; color: var(--gold); background: var(--gold-pale); padding: 4px 10px; border-radius: 999px; }
.news-card-date { font-size: 12px; color: var(--muted); }
.news-card-title { font-size: 15.5px; color: var(--ink-dark); margin-top: 12px; font-weight: 700; line-height: 1.4; }
.news-card-excerpt { font-size: 13px; color: var(--body); margin-top: 8px; line-height: 1.55; }

/* ---------- Trust chips (Produk) ---------- */
.trust-chips { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 36px; }
@media (min-width: 640px) { .trust-chips { gap: 40px; } }
.trust-chip { display: flex; align-items: center; gap: 10px; }
.trust-chip span { font-size: 13.5px; color: var(--ink-dark); font-weight: 700; }
@media (min-width: 640px) { .trust-chip span { font-size: 15px; } }

/* ---------- Catalogue grid (Produk) ---------- */
.catalog-card { background: #fff; border-radius: 22px; overflow: hidden; border: 1px solid rgba(31, 77, 52, 0.08); display: flex; flex-direction: column; transition: transform 0.25s, box-shadow 0.25s; }
.catalog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card-hover); }
.catalog-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.catalog-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.catalog-pill { align-self: flex-start; background: var(--gold-pale); color: var(--gold); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em; }
.catalog-title { font-size: 17px; color: var(--ink-dark); font-weight: 800; margin-top: 4px; }
.catalog-desc { font-size: 13px; color: var(--body); line-height: 1.55; flex: 1; }
.catalog-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-top: 10px; }
.catalog-price { font-weight: 800; color: var(--green); font-size: 14px; white-space: nowrap; }
.catalog-cta { background: var(--green); color: #fff; padding: 10px 16px; border-radius: 999px; font-weight: 700; font-size: 12.5px; white-space: nowrap; flex: none; }
.catalog-cta:hover { background: var(--green-hover); color: #fff; }

/* ---------- Product detail blocks ---------- */
.product-divider-row { display: flex; align-items: center; gap: 16px; margin-top: 56px; }
.product-divider-row .label { font-size: 11.5px; font-weight: 700; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap; }
.product-divider-row .line { flex: 1; height: 1px; background: rgba(31, 77, 52, 0.15); }
.product-detail { display: grid; grid-template-columns: 1fr; gap: 28px; align-items: start; margin-top: 24px; scroll-margin-top: 100px; }
@media (min-width: 700px) { .product-detail { grid-template-columns: 1fr 1fr; gap: 44px; } }
.product-detail img { width: 100%; height: 280px; object-fit: cover; border-radius: 24px; }
@media (min-width: 640px) { .product-detail img { height: 380px; } }
.product-cat-pill { background: var(--green-pale); color: var(--green); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.03em; }
.product-name { font-size: 22px; color: var(--ink-dark); font-weight: 800; margin-top: 14px; }
@media (min-width: 640px) { .product-name { font-size: 26px; } }
.product-desc { font-size: 14px; color: var(--body); margin-top: 10px; line-height: 1.7; }
.product-subhead { font-size: 14px; color: var(--ink-dark); font-weight: 700; margin-top: 22px; }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 12px; }
@media (min-width: 480px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
.benefit-item { font-size: 13px; color: var(--body); display: flex; gap: 8px; align-items: flex-start; }
.benefit-item span { color: var(--gold); }
.product-usage-text { font-size: 13px; color: var(--body); margin-top: 8px; line-height: 1.6; }
.size-select-row { margin-top: 12px; display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.size-select {
  flex: 1; min-width: 160px; padding: 14px 16px; border-radius: 14px; border: 1.5px solid rgba(31, 77, 52, 0.2);
  background: var(--green-pale); color: var(--ink-dark); font-weight: 600; font-size: 14px; font-family: var(--body-font);
}
.size-select-price { font-weight: 800; color: var(--gold); font-size: 18px; }
.size-select-cta { background: var(--green); color: #fff; padding: 14px 20px; border-radius: 14px; font-weight: 700; font-size: 13.5px; white-space: nowrap; }
.size-select-cta:hover { background: var(--green-hover); color: #fff; }
.size-list { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
.size-list-row {
  display: flex; justify-content: space-between; align-items: center; background: var(--green-pale); border-radius: 14px;
  padding: 14px 18px; font-size: 14px; transition: background 0.2s, transform 0.2s;
}
.size-list-row:hover { background: #E2EFE4; transform: translateX(2px); }
.size-list-label { font-weight: 600; color: var(--ink-dark); }
.size-list-right { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.size-list-price { font-weight: 800; color: var(--gold); }
.size-list-link { color: var(--green); font-weight: 700; font-size: 12.5px; }

/* ---------- IKS partner banner ---------- */
.iks-banner { position: relative; background: linear-gradient(120deg, var(--green), var(--green-light)); border-radius: 28px; padding: 32px 24px; display: flex; flex-direction: column; gap: 20px; overflow: hidden; }
@media (min-width: 700px) { .iks-banner { flex-direction: row; justify-content: space-between; align-items: center; padding: 44px 48px; } }
.iks-decor { position: absolute; border-radius: 50%; background: rgba(255, 255, 255, 0.06); }
.iks-decor.d1 { top: -40px; right: -40px; width: 180px; height: 180px; }
.iks-decor.d2 { bottom: -60px; right: 80px; width: 140px; height: 140px; background: rgba(255, 255, 255, 0.05); }
.iks-badge { position: relative; z-index: 1; background: rgba(255, 255, 255, 0.14); color: var(--gold-light); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 999px; text-transform: uppercase; letter-spacing: 0.04em; }
.iks-content { position: relative; z-index: 1; }
.iks-content h3 { font-size: 20px; color: #fff; font-weight: 800; margin-top: 14px; }
.iks-content p { font-size: 13.5px; color: #DDEAE0; margin-top: 8px; max-width: 520px; line-height: 1.6; }
.iks-cta { position: relative; z-index: 1; background: var(--gold); color: #fff; padding: 14px 28px; border-radius: 999px; font-weight: 700; font-size: 14px; white-space: nowrap; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25); flex: none; }
.iks-cta:hover { background: var(--gold-hover); color: #fff; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 40px; align-items: start; }
@media (min-width: 700px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-wa-card { background: var(--ink-dark); border-radius: 28px; padding: 32px; }
.contact-wa-card .eyebrow-light { color: var(--green-text-on-dark-light); font-weight: 700; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }
.contact-wa-card h3 { font-size: 20px; color: #fff; font-weight: 800; margin-top: 12px; }
.contact-wa-card p { color: var(--green-text-on-dark); font-size: 14px; margin-top: 10px; line-height: 1.65; }
.contact-form-card { background: #fff; border: 1px solid rgba(31, 77, 52, 0.1); border-radius: 28px; padding: 32px; }
.contact-form-card .eyebrow { font-size: 12px; }
.contact-form-card h3 { font-size: 20px; color: var(--ink-dark); font-weight: 800; margin-top: 12px; }
.form-fields { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.form-row-2 { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 420px) { .form-row-2 { grid-template-columns: 1fr 1fr; } }
.form-fields label { font-size: 12px; font-weight: 600; color: var(--ink-dark); margin-bottom: 4px; display: block; }
.form-fields input, .form-fields textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1px solid rgba(31, 77, 52, 0.2); font-size: 14px;
  font-family: inherit; color: var(--ink);
}
.form-fields textarea { resize: vertical; }
.form-error { font-size: 12px; color: #C0392B; min-height: 16px; margin: -4px 0 0; }
.form-submit-btn { margin-top: 6px; background: var(--green); color: #fff; border: none; padding: 15px; border-radius: 999px; font-weight: 700; font-size: 14.5px; width: 100%; }
.form-submit-btn:hover { background: var(--green-hover); color: #fff; }
.form-success { display: none; margin-top: 20px; background: var(--green-pale); border-radius: 16px; padding: 22px; text-align: center; }
.form-success.is-visible { display: block; }
.form-success .check { font-size: 26px; }
.form-success p:first-of-type { font-size: 14px; color: var(--ink-dark); font-weight: 700; margin-top: 8px; }
.form-success p:last-of-type { font-size: 13px; color: var(--body); margin-top: 6px; }

.contact-info-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 24px; }
@media (min-width: 700px) { .contact-info-grid { grid-template-columns: 1fr 1fr; } }
.map-embed { border-radius: 24px; overflow: hidden; height: 280px; border: 1px solid rgba(31, 77, 52, 0.1); }
@media (min-width: 520px) { .map-embed { height: 320px; } }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.info-panel { background: var(--green-pale); border-radius: 24px; padding: 28px; display: flex; flex-direction: column; gap: 16px; }
.info-panel-label { font-size: 12px; font-weight: 700; color: var(--green); }
.info-panel-value { font-size: 14px; color: var(--ink-dark); margin-top: 4px; line-height: 1.5; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-dark); color: var(--green-text-on-dark); margin-top: 0; }
.footer-topline { height: 3px; background: linear-gradient(90deg, var(--green), var(--gold), var(--green)); }
.footer-inner { padding: 0 var(--section-x) 32px; }
.footer-grid { max-width: var(--container); margin: 0 auto; padding-top: 48px; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 520px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 860px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.1fr; } }
.footer-logo { height: 48px; filter: brightness(0) invert(1); }
@media (min-width: 520px) { .footer-logo { height: 58px; } }
.footer-desc { font-size: 13px; margin-top: 16px; line-height: 1.7; max-width: 260px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-social a.wa:hover { background: var(--whatsapp); }
.footer-heading { color: #fff; font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 0; }
.footer-links a, .footer-links span { color: var(--green-text-on-dark); font-size: 13.5px; padding: 0 0 12px; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-block { font-size: 13.5px; line-height: 1.8; }
.footer-privacy-link { background: none; border: none; color: var(--green-text-on-dark); font-size: 12.5px; padding: 16px 0 0; text-align: left; display: inline-block; }
.footer-privacy-link:hover { color: var(--gold-light); }
.footer-bottom { max-width: var(--container); margin: 40px auto 0; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, 0.1); font-size: 12.5px; color: #8AA090; }

/* ---------- Mobile sticky WhatsApp bar ---------- */
.mobile-wa-bar {
  position: fixed; bottom: 0; left: 0; right: 0; background: var(--green); color: #fff; text-align: center;
  padding: 16px; font-weight: 700; font-size: 15px; z-index: 60; box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}
.mobile-wa-bar:hover { color: #fff; }

/* ---------- Floating WhatsApp button (desktop/tablet — mobile already has the bar above) ---------- */
.wa-float {
  display: none; position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; border-radius: 50%;
  background: var(--whatsapp); align-items: center; justify-content: center;
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.45); z-index: 60; transition: transform 0.2s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 27px; height: 27px; }
@media (min-width: 1200px) { .wa-float { display: flex; } }

/* ---------- Privacy / 404 ---------- */
.simple-page { max-width: 760px; margin: 0 auto; padding: 48px var(--section-x) 80px; }
.simple-page h1 { font-size: 26px; color: var(--ink-dark); font-weight: 800; }
@media (min-width: 640px) { .simple-page h1 { font-size: 32px; } }
.simple-page p { font-size: 14px; color: var(--body); margin-top: 16px; line-height: 1.75; }
.notfound-page { max-width: 600px; margin: 0 auto; padding: 80px 24px; text-align: center; }
.notfound-num { font-size: 52px; font-weight: 800; color: var(--green); font-family: var(--heading-font); }
@media (min-width: 640px) { .notfound-num { font-size: 64px; } }
.notfound-title { font-size: 20px; color: var(--ink-dark); font-weight: 700; margin-top: 14px; }
.notfound-text { font-size: 14.5px; color: var(--body); margin-top: 10px; }
.notfound-page .btn { margin-top: 26px; }
