/* -------------------------------------------------
   Root variables
------------------------------------------------- */
:root {
  --green:        #166534;
  --lightgreen:  #f0fdf4;
  --dark:         #1f2937;
}

/* -------------------------------------------------
   Global reset & base styles
------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background: #fff;
}

/* -------------------------------------------------
   Header / Hero
------------------------------------------------- */
header {
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.55)),
    url("../images/banner.webp") center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 120px 20px 140px;
  min-height: 70vh;
}
header h1 {
  font-size: 42px;
  margin-bottom: 12px;
}
header p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
}

/* -------------------------------------------------
   Action bar & buttons
------------------------------------------------- */
.action-bar {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 18px;
  margin-top: -40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.action-btn {
  background: #fff;
  padding: 14px 26px;
  min-height: 48px;      /* ✅ ADD */
  display: inline-flex; /* ✅ ADD */
  align-items: center;  /* ✅ ADD */
  justify-content: center; /* ✅ ADD */
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  color: #1f2937;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  transition: transform .3s, box-shadow .3s;
}

.action-btn:hover {
  transform: translateY(-4px);
}

/* colour helpers */
.call      { color: #166534; }
.whatsapp  { color: #16a34a; }
.location  { color: #1e40af; }

/* -------------------------------------------------
   Sections & headings
------------------------------------------------- */
section {
  max-width: 1200px;
  margin: auto;
  padding: 80px 20px;
}
section.light { background: var(--lightgreen); }

h2 {
  text-align: center;
  color: #14532d;
  font-size: 32px;
  margin-bottom: 50px;
}

/* -------------------------------------------------
   Grid utilities
------------------------------------------------- */
.grid   { display: grid; gap: 30px; }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid-2 { grid-template-columns: 1fr 1fr; }

/* -------------------------------------------------
   Card components
------------------------------------------------- */
.card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}
.trust .card { text-align: center; font-weight: 600; }

.products .card {
  display: flex;
  flex-direction: column;
}
.products img {
  width: 100%;
  border-radius: 14px;
  margin-bottom: 15px;
}
.products h3 {
  margin: 10px 0;
  color: #166534;
}
.products ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}
.products li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 15px;
}
.products li::before {
  content: "✔";
  color: #166534;
  font-weight: bold;
  margin-top: 2px;
}

/* -------------------------------------------------
   About section
------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about img {
  width: 100%;
  border-radius: 20px;
}

/* -------------------------------------------------
   Forms
------------------------------------------------- */
form input,
form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}
form input:focus,
form textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,101,52,.15);
}
form textarea { min-height: 120px; }

form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
form button:hover { background: #14532d; }

/* -------------------------------------------------
   Focus outlines (accessibility)
------------------------------------------------- */
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: 2px dashed var(--green);
  outline-offset: 3px;
}

/* -------------------------------------------------
   Iframe
------------------------------------------------- */
iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 18px;
}

/* -------------------------------------------------
   Footer (main & site‑footer)
------------------------------------------------- */
footer {
  background: #052e16;
  color: #e5e7eb;
  text-align: center;
  padding: 40px 20px;
}
footer strong { color: #bbf7d0; }

/* Site‑footer – larger block */
.site-footer {
  background: #052e16;
  color: #e5e7eb;
  padding: 50px 20px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  align-items: flex-start;
}

/* Footer headings – slightly higher contrast */
.footer-block h4 {
  color: #bbf7d0;
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

/* Footer text */
.footer-block p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 10px;
  color: #e5e7eb;
  opacity: .95;
}

/* Links */
.site-footer a {
  color: #e5e7eb;
  text-decoration: none;
}
.site-footer a:hover { text-decoration: underline; }

/* Icon + text alignment */
.footer-block p span {
  display: inline-block;
  margin-right: 6px;
}

/* Working‑hours highlight */
.footer-note {
  margin-top: 12px;
  font-weight: 600;
  color: #bbf7d0;
}

/* Bottom bar */
.footer-bottom {
  text-align: center;
  margin-top: 35px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.15);
  font-size: 14px;
  color: #d1fae5;
}

/* -------------------------------------------------
   Lists – remove default bullets (only once)
------------------------------------------------- */
.site-footer ul,
.site-footer li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer li::before { content: none !important; }

/* -------------------------------------------------
   Responsive tweaks
------------------------------------------------- */
@media (max-width: 900px) {
  header h1 { font-size: 32px; }
  .about    { grid-template-columns: 1fr; }
  .grid-2   { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .footer-inner { gap: 30px; text-align: center; }
  .footer-block p { font-size: 14px; }

  .action-btn { padding: 16px 30px; }
}

.map-embed{
  width: 100%;
  max-width: 100%;
  border: 0;
  border-radius: 18px;
}

header {
  background-size: cover;
  background-position: center;
}
.whatsapp {
  color: #16a34a;
  font-weight: bold;
}

.location {
  display: inline-block;
}

.action-btn.whatsapp {
  color: #212121;          /* dark gray – contrast 5.2:1 */
  background: #25D366;
}
/* Fix for inline style removed from Google Maps button */
.action-btn.location {
  display: inline-block;
}
.products img {
  height: auto;
  width: 100%;
}
.action-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.action-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  line-height: 1;
}
#map-container {
  width: 100%;
  height: 100%;
}

.map-placeholder {
  height: 400px;
  background: #f0fdf4;
  border-radius: 18px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
}

#load-map {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  background: #166534;
  color: #ffffff;

  padding: 14px 26px;
  min-width: 140px;
  white-space: nowrap;

  border-radius: 30px;
  border: none;

  font-size: 15px;
  font-weight: 700;

  cursor: pointer;
  box-shadow: 0 10px 25px rgba(22, 101, 52, 0.35);
}


#load-map:hover {
  background: #14532d;
  transform: translateY(-2px);
  box-shadow: 0 16px 35px rgba(22, 101, 52, 0.45);
}

#load-map:focus {
  outline: 3px solid #86efac;
  outline-offset: 4px;
}

.action-btn.location {
  background: #ffffff;
  color: #1e40af;
  box-shadow: 0 8px 18px rgba(0,0,0,.15);
}
