/* ===========================================================
   FRESCO FISH & VEGETABLE — Website Stylesheet
   Brand colors sampled from logo: green + red, on white
=========================================================== */

:root {
  --green: #7EBC42;
  --green-dark: #5C9530;
  --green-light: #EEF6E2;
  --red: #E4221F;
  --red-dark: #B91916;
  --ink: #1C231D;
  --ink-soft: #4B564D;
  --muted: #6E786F;
  --line: #E3E8E1;
  --bg-alt: #EEF7E9;
  --white: #FFFFFF;
  --dark: #0F3320;
  --dark-soft: #1C5A34;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 4px 18px rgba(20, 32, 26, 0.08);
  --shadow-lg: 0 12px 32px rgba(20, 32, 26, 0.14);
  --container: 1360px;
  --font-head: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.section { padding: 52px 0; }
.section.alt { background: var(--bg-alt); }
.section-tight { padding: 36px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section-head {
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--red); color: var(--white); box-shadow: 0 6px 16px rgba(228,34,31,.28); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-outline-dark { background: transparent; border-color: var(--green-dark); color: var(--green-dark); }
.btn-outline-dark:hover { background: var(--green-dark); color: var(--white); }
.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); }
.btn-ghost { background: var(--green-light); color: var(--green-dark); }
.btn-ghost:hover { background: #dcefd3; }
.btn-sm { padding: 10px 18px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.top-strip {
  background: var(--dark);
  color: #cfe0d4;
  font-size: .82rem;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
  padding-bottom: 8px;
  gap: 16px;
  flex-wrap: wrap;
}
.top-strip a { color: #cfe0d4; }
.top-strip .top-contacts { display: flex; gap: 20px; flex-wrap: wrap; }
.top-strip .top-contacts span { display: inline-flex; align-items: center; gap: 6px; }
.top-strip svg { width: 14px; height: 14px; }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img { height: 80px; width: auto; display: block; }
.footer-logo-img { height: 50px; border-radius: 10px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .l1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.75rem;
  color: var(--green);
  letter-spacing: .02em;
}
.logo-text .l2 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .13em;
  color: var(--red);
  margin-top: 3px;
}

nav.primary-nav ul { display: flex; gap: 2px; align-items: center; }
nav.primary-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 8px;
  color: var(--ink-soft);
  transition: color .15s, background .15s;
}
nav.primary-nav a:hover { color: var(--green-dark); background: var(--green-light); }
nav.primary-nav a.active { color: var(--green-dark); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid transparent;
  flex-shrink: 0;
}
.icon-btn.whatsapp { background: #E7F6EA; color: #22A548; }
.icon-btn svg { width: 20px; height: 20px; }

.menu-toggle {
  display: none;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

/* ---------- Mobile sticky action bar ---------- */
.mobile-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -6px 20px rgba(0,0,0,.08);
}
.mobile-action-bar .row { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.mobile-action-bar a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 10px 4px 14px;
  font-size: .72rem;
  font-weight: 700;
  color: var(--ink-soft);
}
.mobile-action-bar a svg { width: 20px; height: 20px; }
.mobile-action-bar a.call { color: var(--green-dark); }
.mobile-action-bar a.whatsapp { color: #22A548; }
.mobile-action-bar a.quote { color: var(--red); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-top: 76px;
  padding-bottom: 76px;
}
.hero-copy .eyebrow { background: rgba(255,255,255,.12); color: #d9ecd0; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-copy p { color: #cddccc; font-size: 1.12rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.hero-stats { display: flex; gap: 32px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--white); }
.hero-stats div span { font-size: .82rem; color: #b9cdb8; text-transform: uppercase; letter-spacing: .06em; }

/* Hero image carousel */
.hero-carousel { min-height: 560px; display: flex; align-items: center; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(4,10,7,.4) 0%, rgba(4,10,7,.52) 60%, rgba(4,10,7,.65) 100%);
}
.hero-carousel .container.hero-center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding-top: 64px;
  padding-bottom: 64px;
}
.hero-center .eyebrow { background: rgba(255,255,255,.14); color: #eaf5e2; margin-bottom: 0; }
.hero-center h1 { max-width: 800px; margin: 0 auto; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.hero-arrow svg { width: 20px; height: 20px; }
.hero-arrow:hover { background: rgba(255,255,255,.28); border-color: rgba(255,255,255,.6); }
.hero-arrow-prev { left: 20px; }
.hero-arrow-next { right: 20px; }

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .15s, transform .15s;
}
.hero-dot:hover { background: rgba(255,255,255,.7); }
.hero-dot.active { background: var(--white); transform: scale(1.2); }

@media (max-width: 640px) {
  .hero-arrow { width: 38px; height: 38px; }
  .hero-arrow-prev { left: 10px; }
  .hero-arrow-next { right: 10px; }
}
.hero-center .hero-actions { justify-content: center; margin-top: 0; }

.hero-visual { position: relative; }
.ph-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* Placeholder image blocks (stand-in for real photography) */
.ph {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  background: linear-gradient(135deg, var(--green-light), #dff1d6);
  color: var(--green-dark);
  border: 1px dashed #b7d8ab;
  padding: 24px;
  min-height: 160px;
}
.ph svg { width: 40px; height: 40px; opacity: .85; }
.ph .ph-label { font-size: .74rem; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.ph .ph-sub { font-size: .68rem; color: #5c8a52; text-transform: none; letter-spacing: 0; }
.ph.dark { background: linear-gradient(135deg, var(--dark-soft), var(--dark)); color: #cfe6c8; border-color: #2e6b40; }
.ph.dark .ph-sub { color: #8fac86; }
.ph.red { background: linear-gradient(135deg, #fdeceb, #fbd8d6); color: var(--red-dark); border-color: #f3b6b3; }
.ph.red .ph-sub { color: #c56361; }
.hero-visual .ph { min-height: 420px; border-radius: var(--radius-lg); border-style: solid; border-color: rgba(255,255,255,.15); }

/* ---------- Category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex;
  flex-direction: column;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card-media { display: block; }
.cat-card .ph { min-height: 150px; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.cat-card-img { width: 100%; height: 150px; object-fit: cover; display: block; border-bottom: 1px solid var(--line); }
.cat-card-body { padding: 20px 22px 24px; }
.cat-card-body h3 { margin-bottom: 6px; }
.cat-card-body p { font-size: .92rem; margin-bottom: 14px; }
.cat-card-link { font-weight: 700; font-size: .88rem; color: var(--green-dark); display: inline-flex; align-items: center; gap: 6px; }
.cat-card-link svg { width: 16px; height: 16px; }

/* ---------- Feature / Why choose ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .feature-grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .feature-grid-4 { grid-template-columns: 1fr; } }
.feature-card {
  text-align: center;
  padding: 30px 18px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
}
.feature-icon {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { font-size: 1.02rem; margin-bottom: 6px; }
.feature-card p { font-size: .86rem; margin: 0; }

/* ---------- Product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card-media { display: block; }
.product-card .ph { min-height: 220px; border-radius: 0; border: none; border-bottom: 1px solid var(--line); }
.product-card-img { width: 100%; height: 220px; object-fit: cover; display: block; border-bottom: 1px solid var(--line); }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-tag {
  align-self: flex-start;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--green-dark);
  background: var(--green-light);
  padding: 4px 10px;
  border-radius: 999px;
}
.product-body h3 { font-size: 1.05rem; margin-bottom: 2px; }
.product-meta { font-size: .8rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 12px; margin: 2px 0 4px; }
.product-meta span { display: inline-flex; align-items: center; gap: 4px; }
.product-meta svg { width: 14px; height: 14px; }
.product-desc { font-size: .88rem; margin-bottom: 6px; flex: 1; }
.availability { font-size: .78rem; font-weight: 700; }
.availability.in { color: var(--green-dark); }
.availability.limited { color: #B5760E; }

/* ---------- Product detail page ---------- */
.product-detail {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 48px;
  align-items: start;
}
.product-detail-photo { min-height: 340px; border-radius: var(--radius-lg); }
.product-detail-img { width: 100%; height: 340px; object-fit: cover; border-radius: var(--radius-lg); display: block; }
.product-detail-body { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.product-detail-body h2 { font-size: 1.9rem; margin: 6px 0 4px; }
.product-meta-lg { font-size: .92rem; }
.product-meta-lg svg { width: 16px; height: 16px; }
.availability-lg { font-size: .88rem; margin-top: 2px; }
.product-detail-desc { font-size: 1rem; color: var(--ink-soft); margin: 14px 0 22px; max-width: 56ch; }
.product-detail-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-whatsapp { background: #22A548; color: var(--white); border-color: #22A548; }
.btn-whatsapp:hover { background: #1c8a3c; border-color: #1c8a3c; }
.product-detail-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }

@media (max-width: 1080px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* ---------- Who we serve ---------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.serve-card {
  text-align: center;
  padding: 10px 10px;
  background: none;
}
.serve-card .feature-icon {
  width: 92px; height: 92px;
  background: var(--dark);
  color: var(--white);
  margin-bottom: 18px;
}
.serve-card .feature-icon svg { width: 42px; height: 42px; }
.serve-card h3 { font-size: 1rem; margin: 0; }

.serve-band { background: linear-gradient(120deg, var(--green-dark), var(--green)); }
.serve-band .eyebrow { background: rgba(255,255,255,.18); color: #eafbe1; }
.serve-band .section-head h2 { color: var(--white); }
.serve-band .serve-card h3 { color: var(--white); }
.serve-band .serve-card .feature-icon { background: var(--dark); color: var(--white); }

/* ---------- About page: in-page jump nav ---------- */
.jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
}
.jump-nav a {
  font-size: .85rem;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--bg-alt);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.jump-nav a:hover { background: var(--green-light); color: var(--green-dark); border-color: #cfe6bd; }

/* ---------- About split ---------- */
.about-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}
.about-split .ph { min-height: 380px; border-radius: var(--radius-lg); }
.about-photo { width: 100%; min-height: 320px; max-height: 380px; height: 100%; object-fit: cover; display: block; border-radius: var(--radius-lg); }
.about-points { display: flex; flex-direction: column; gap: 14px; margin: 22px 0 26px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.about-points svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; margin-top: 2px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--green-dark), var(--green));
  color: var(--white);
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #eafbe1; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 26px; }
.cta-band .btn-primary { background: var(--white); color: var(--red); box-shadow: none; }
.cta-band .btn-primary:hover { background: #f4f4f4; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--dark);
  color: #b9cdb8;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-grid h4 { color: var(--white); font-size: .95rem; margin-bottom: 16px; text-transform: uppercase; letter-spacing: .06em; }
.footer-grid ul li { margin-bottom: 10px; font-size: .9rem; }
.footer-grid ul li a:hover { color: var(--white); }
.footer-about p { font-size: .88rem; color: #a9c0a6; max-width: 32ch; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .88rem; }
.footer-contact-item svg { width: 18px; height: 18px; color: #8fac86; flex-shrink: 0; margin-top: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-social svg { width: 17px; height: 17px; }
.footer-bottom {
  padding: 20px 100px 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  color: #8fac86;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-credit { color: #8fac86; transition: color .15s ease; }
.footer-credit:hover { color: var(--white); }
@media (max-width: 860px) {
  .footer-bottom { padding-right: 0; padding-left: 80px; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--dark), var(--dark-soft));
  color: var(--white);
  padding: 34px 0;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.breadcrumb { font-size: .8rem; color: #b9cdb8; display: flex; gap: 8px; align-items: center; }
.breadcrumb a:hover { color: var(--white); }
.page-hero p { color: #cddccc; max-width: 60ch; margin-top: 8px; }

/* ---------- Products page: filters ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}
.filters-panel {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  position: sticky;
  top: 92px;
}
.filters-panel h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 18px 0 10px; }
.filters-panel h4:first-child { margin-top: 0; }
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-chip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
}
.filter-chip:hover { border-color: var(--green); color: var(--green-dark); }
.filter-chip.active { background: var(--green); color: var(--white); border-color: var(--green); }
.filter-chip .count { font-size: .75rem; opacity: .75; }

.products-toolbar {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.search-box {
  flex: 1;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
}
.search-box svg { width: 18px; height: 18px; color: var(--muted); flex-shrink: 0; }
.search-box input { border: none; outline: none; flex: 1; font-size: .95rem; font-family: inherit; background: transparent; }
.results-count { font-size: .85rem; color: var(--muted); white-space: nowrap; }
.empty-state { text-align: center; padding: 60px 20px; color: var(--muted); display: none; }
.empty-state.show { display: block; }

/* ---------- Services ---------- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; box-shadow: var(--shadow); }
.service-card .feature-icon { margin: 0 0 16px; }
.service-card ul { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { font-size: .88rem; color: var(--ink-soft); display: flex; gap: 8px; align-items: flex-start; }
.service-card ul li svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; margin-top: 3px; }

/* ---------- Contact / Quote form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: start;
}
.contact-info-card {
  background: var(--dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
}
.contact-info-card h3 { color: var(--white); }
.contact-info-card .footer-contact-item { color: #d6e6d1; }
.contact-info-card .footer-contact-item svg { color: #9fc196; }
.contact-info-card hr { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 24px 0; }
.map-ph { margin-top: 20px; border-radius: var(--radius); overflow: hidden; }

.contact-info-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.contact-info-layout .map-ph { margin-top: 0; height: 100%; }
.contact-info-layout .map-ph .ph { height: 100%; min-height: 320px; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: 6px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: .92rem;
  color: var(--ink);
  background: var(--bg-alt);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: var(--white);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 6px; }
.form-note { font-size: .8rem; color: var(--muted); margin-top: 14px; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.form-success {
  display: none;
  background: var(--green-light);
  color: var(--green-dark);
  border: 1px solid #bfe3ac;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-success.show { display: flex; align-items: center; gap: 10px; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }
.form-error {
  display: none;
  background: #fdeceb;
  color: var(--red-dark);
  border: 1px solid #f3b6b3;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-error.show { display: flex; align-items: center; gap: 10px; }
.form-error svg { width: 20px; height: 20px; flex-shrink: 0; }
.btn[disabled] { opacity: .6; cursor: not-allowed; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; }
.text-center { text-align: center; }

/* ===========================================================
   Responsive
=========================================================== */
@media (max-width: 1080px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .serve-grid { grid-template-columns: repeat(3, 1fr); }
  .products-layout { grid-template-columns: 220px 1fr; }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; }
  .about-split { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .top-strip { display: none; }
  nav.primary-nav { display: none; }
  .menu-toggle { display: flex; }
  .header-cta .icon-btn { display: none; }
  .header-cta > a.btn-primary { display: none; }
  .mobile-action-bar { display: block; }
  body { padding-bottom: 66px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .products-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
}

@media (max-width: 640px) {
  .section { padding: 32px 0; }
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .serve-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ---------- Mobile nav drawer ---------- */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20,32,26,.5);
  display: none;
}
.mobile-nav.open { display: block; }
.mobile-nav-panel {
  position: absolute;
  top: 0; right: 0;
  width: min(320px, 84vw);
  height: 100%;
  background: var(--white);
  padding: 24px;
  box-shadow: -10px 0 30px rgba(0,0,0,.2);
  display: flex;
  flex-direction: column;
}
.mobile-nav-close {
  align-self: flex-end;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-alt);
  margin-bottom: 20px;
}
.mobile-nav-close svg { width: 18px; height: 18px; }
.mobile-nav-panel a {
  padding: 14px 4px;
  font-weight: 700;
  font-size: 1.05rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-nav-panel a.active { color: var(--green-dark); }
.mobile-nav-actions { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }

/* ---------- Floating WhatsApp + Back-to-top buttons ---------- */
.float-btn {
  position: fixed;
  bottom: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 250;
  border: none;
  box-shadow: 0 8px 22px rgba(20, 32, 26, 0.28);
  transition: transform .15s ease, opacity .2s ease, box-shadow .15s ease;
}
.float-btn svg { width: 27px; height: 27px; }
.float-btn:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 10px 26px rgba(20, 32, 26, 0.34); }

.float-whatsapp {
  left: 26px;
  background: #25D366;
  color: var(--white);
}

.float-top {
  right: 26px;
  background: var(--dark);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}
.float-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }

@media (max-width: 860px) {
  .float-btn { bottom: 84px; width: 52px; height: 52px; }
  .float-btn svg { width: 24px; height: 24px; }
  .float-whatsapp { left: 16px; }
  .float-top { right: 16px; }
}

/* ---------- Per-product actions (Request Pricing + WhatsApp) ---------- */
.product-actions { display: flex; align-items: stretch; gap: 8px; }
.product-actions .btn { flex: 1; }
.btn-whatsapp-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  flex-shrink: 0;
  border-radius: 999px;
  background: #22A548;
  color: var(--white);
  border: 2px solid transparent;
  transition: background .15s ease, transform .15s ease;
}
.btn-whatsapp-sm svg { width: 18px; height: 18px; }
.btn-whatsapp-sm:hover { background: #1c8a3c; transform: translateY(-1px); }

/* ---------- Products catalogue: force 3-column grid (overrides .product-grid's
   default 4-column desktop layout for this page only) ---------- */
.product-grid.catalogue { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 860px) { .product-grid.catalogue { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid.catalogue { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }
