* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: "Montserrat"; }

.ect-map-hero {
  position: relative;
  width: 100%;
  height: 750px;
  overflow: hidden;
  background: #e8e6df;
}

#ectMap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* White gradient veil: 100% opacity at top, fading to 0% at bottom */
.ect-map-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
  z-index: 2;
}

/* ── Heading overlay ── */
.ect-map-heading {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-top: 56px;
  pointer-events: none;
}
.ect-map-eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  color: #1b3a10;
  margin-bottom: 14px;
  text-shadow: 0 1px 12px rgba(247,247,245,0.9), 0 1px 3px rgba(247,247,245,0.9);
}
.ect-map-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.3;
  color: #10240a;
  max-width: 620px;
  margin: 0 auto;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 16px rgba(247,247,245,0.95), 0 1px 4px rgba(247,247,245,0.95);
}

/* ── Wrapper: positions pin, card auto-stacks above it ── */
.ect-map-marker {
  position: absolute;
  top: 594px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* ── Info card (hidden until pin hover/click) ── */
.ect-map-card {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  width: 260px;
  transform: translateX(-50%) translateY(8px) scale(0.94);
  transform-origin: bottom center;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(14,59,18,0.18), 0 2px 8px rgba(0,0,0,0.07);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .26s ease, transform .3s cubic-bezier(.34,1.4,.64,1), visibility .26s;
}
.ect-map-pin:hover ~ .ect-map-card,
.ect-map-card.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}
.ect-map-card:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1);
}

.ect-map-card-photo-wrap {
  padding: 16px 16px 0;
}
.ect-map-card-photo {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  background: linear-gradient(135deg, #123b0a, #2f6b1e);
}

.ect-map-card-info {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ect-map-card-label {
  font-size: 10.5px;
  font-weight: 700;
  color: #123b0a;
  letter-spacing: 0.15px;
  margin-bottom: 1px;
}
.ect-map-card-value {
  font-size: 10.5px;
  color: #55605a;
  line-height: 1.42;
}

.ect-map-card-row + .ect-map-card-row { margin-top: 0; }

/* ── Pin (teardrop map marker) ── */
.ect-map-pin {
  position: relative;
  width: 44px;
  height: 56px;
  cursor: pointer;
  z-index: 6;
}
.ect-map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 56'><path d='M22 2C11 2 3 10.6 3 21c0 15 19 33 19 33s19-18 19-33C41 10.6 33 2 22 2z'/></svg>") center / contain no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 56'><path d='M22 2C11 2 3 10.6 3 21c0 15 19 33 19 33s19-18 19-33C41 10.6 33 2 22 2z'/></svg>") center / contain no-repeat;
  filter: drop-shadow(0 6px 14px rgba(18,59,10,0.35));
  animation: ectPinFloat 2.5s ease-in-out infinite;
}
.ect-map-pin::after {
  content: '';
  position: absolute;
  top: 50px;
  left: 50%;
  width: 14px;
  height: 6px;
  margin-left: -7px;
  background: rgba(12, 60, 1, 0.9);
  border-radius: 50%;
  z-index: -1;
  animation: ectPinPulse 2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
@keyframes ectPinPulse {
  0% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(12, 60, 1, 0.7), 0 0 0 0 rgba(12, 60, 1, 0.4);
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
    box-shadow: 0 0 0 24px rgba(12, 60, 1, 0), 0 0 0 45px rgba(12, 60, 1, 0);
  }
}
@keyframes ectPinFloat {
  0%, 100% { transform: translateY(0); filter: drop-shadow(0 6px 14px rgba(18,59,10,0.35)); }
  50% { transform: translateY(-8px); filter: drop-shadow(0 14px 20px rgba(18,59,10,0.25)); }
}
@keyframes ectPinImgFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
.ect-map-pin img {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  object-fit: cover;
  z-index: 1;
  animation: ectPinImgFloat 2.5s ease-in-out infinite;
}

@media (max-width: 640px) {
  .ect-map-hero { height: 680px; }
  .ect-map-heading { padding-top: 40px; }
  .ect-map-marker { top: 524px; }
  .ect-map-card { width: 230px; }
}






/* FAQ */

:root{
  --bg:#f7f7f5;
  --card:#ffffff;
  --ink:#111312;
  --ink-soft:#5b5f5c;
  --line:#e6e6e2;
  --accent:#1f6f54;
  --accent-soft:#e7f2ed;
  --radius:14px;
  --ease:cubic-bezier(.4,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.4,.44,1);
}

.faq-section{
  max-width:1200px;
  margin:0 auto;
  padding:72px 20px 96px;
  position:relative;
  overflow:hidden;
  margin-top: 50px;
}

.faq-section::before{
  content:"";
  position:absolute;
  top:-180px; right:-180px;
  width:420px; height:420px;
  background:radial-gradient(circle,rgba(31,111,84,.10),transparent 70%);
  border-radius:50%;
  pointer-events:none;
  animation:faq-float 9s ease-in-out infinite alternate;
}

@keyframes faq-float{
  from{transform:translate(0,0)}
  to{transform:translate(-40px,40px)}
}

/* Header */
.faq-head{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:48px;
}

.faq-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:.72rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--accent);
  font-weight:600;
  margin-bottom:14px;
  font-family: "Montserrat";
}

.faq-eyebrow::before{
  content:"";
  width:26px;height:2px;
  background:var(--accent);
  display:inline-block;
  transform-origin:left;
  animation:faq-grow .8s var(--ease) both .2s;
}

@keyframes faq-grow{
  from{transform:scaleX(0)}
  to{transform:scaleX(1)}
}

.faq-title{
  font-family: "Montserrat";
  font-weight:700;
  font-size:clamp(1.7rem,4vw,2.6rem);
  line-height:1.15;
  letter-spacing:-.02em;
  max-width:560px;
  margin:0;
}

.faq-title span{color:var(--accent)}

.faq-sub{
  max-width:340px;
  color:var(--ink-soft);
  font-size:.95rem;
  margin:0;
}

/* Grid */
.faq-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 24px;
  align-items:start;
}

/* Item */
.faq-item{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  opacity:0;
  transform:translateY(26px);
  transition:border-color .3s var(--ease), box-shadow .35s var(--ease), transform .35s var(--ease);
  will-change:transform,opacity;
}

.faq-item.faq-in-view{
  animation:faq-rise .65s var(--ease) forwards;
}

@keyframes faq-rise{
  to{opacity:1;transform:translateY(0)}
}

.faq-item:hover{
  border-color:rgba(31,111,84,.35);
  box-shadow:0 12px 32px -12px rgba(17,19,18,.12);
  transform:translateY(-2px);
}

.faq-item.open{
  border-color:var(--accent);
  box-shadow:0 16px 40px -14px rgba(31,111,84,.22);
}

/* Question button */
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:20px 22px;
  background:none;
  border:none;
  cursor:pointer;
  text-align:left;
  font-family: "Montserrat";
  font-size:.95rem;
  font-weight:600;
  color:var(--ink);
  transition:color .25s var(--ease);
}

.faq-item.open .faq-q{color:var(--accent)}

/* Icon */
.faq-icon{
  flex:0 0 34px;
  width:34px;height:34px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--accent-soft);
  color:var(--accent);
  transition:transform .45s var(--ease-spring), background .3s var(--ease), color .3s var(--ease);
}

.faq-icon svg{
  width:15px;height:15px;
  transition:transform .45s var(--ease-spring);
}

.faq-item:hover .faq-icon{transform:scale(1.08)}

.faq-item.open .faq-icon{
  background:var(--accent);
  color:#fff;
  transform:rotate(180deg);
}

/* Answer */
.faq-a{
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .5s var(--ease);
}

.faq-item.open .faq-a{grid-template-rows:1fr}

.faq-a-inner{overflow:hidden}

.faq-a-inner p{
  padding:0 22px 22px;
  color:var(--ink-soft);
  font-size:.92rem;
  margin:0;
  opacity:0;
  transform:translateY(-6px);
  transition:opacity .4s var(--ease) .1s, transform .4s var(--ease) .1s;
}

.faq-item.open .faq-a-inner p{
  opacity:1;
  transform:translateY(0);
}

/* Bottom accent bar */
.faq-item::after{
  content:"";
  display:block;
  height:3px;
  background:linear-gradient(90deg,var(--accent),#5cbf9a);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .55s var(--ease);
}

.faq-item.open::after{transform:scaleX(1)}

/* Focus */
.faq-q:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:-2px;
  border-radius:var(--radius);
}

/* Responsive */
@media (max-width:900px){
  .faq-grid{grid-template-columns:1fr}
  .faq-section{padding:56px 18px 72px}
}

@media (max-width:560px){
  .faq-head{margin-bottom:34px}
  .faq-q{padding:17px 16px;font-size:.9rem}
  .faq-a-inner p{padding:0 16px 18px}
  .faq-icon{flex-basis:30px;width:30px;height:30px}
}

@media (prefers-reduced-motion:reduce){
  .faq-section::before{animation:none!important}
  .faq-eyebrow::before{animation:none!important}
  .faq-item{opacity:1;transform:none;transition:none!important}
  .faq-item.faq-in-view{animation:none!important}
  .faq-q,.faq-icon,.faq-icon svg,.faq-a,.faq-a-inner p,.faq-item::after{transition:none!important}
}



  
/* =========================================
   FOOTER
========================================= */
.footer { font-family: "Montserrat"; }
.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 100px; }

/* ---- Top dark green section ---- */
.footer-top { background: #12380a; color: #fff; padding: 56px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr auto auto auto auto;
  gap: 48px;
}
.f-col a, .f-col .f-head { white-space: nowrap; }
/* SERVICES column pushed right */
.footer-grid > .f-col:nth-child(2) { padding-left: 170px; }

.f-logo {
  font-size: 16px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 16px;
}
.f-desc {
  font-size: 15px; line-height: 1.55; color: #e9efe6;
  max-width: 380px; margin-bottom: 26px;
}
.f-news-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.f-news-desc { font-size: 15px; line-height: 1.5; color: #e9efe6; margin-bottom: 16px; }

.f-subscribe { display: flex; max-width: 300px; }
.f-subscribe input {
  flex: 1; min-width: 0;
  padding: 11px 14px;
  border: none; border-radius: 6px 0 0 6px;
  background: #f5f2ea; color: #333;
  font-size: 14px; font-family: "Montserrat"; outline: none;
}
.f-subscribe input::placeholder { color: #9aa79a; }
.f-subscribe button {
  padding: 11px 18px;
  border: none; border-radius: 6px;
  margin-left: -6px;
  background: #1f5c13; color: #fff;
  font-size: 14px; font-family: "Montserrat"; cursor: pointer;
  transition: background .2s ease;
}
.f-subscribe button:hover { background: #2a7a1a; }

.f-col { display: flex; flex-direction: column; }
.f-head {
  font-size: 16px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 20px; color: #fff;
}
.f-head-gap { margin-top: 28px; }
.f-head-normal { text-transform: none; }
.f-col a {
  color: #eef3ec; text-decoration: none;
  font-size: 15.5px; line-height: 1.4;
  margin-bottom: 16px;
  transition: color .2s ease, transform .2s ease;
}
.f-col a:hover { color: #a8d99a; }

/* ---- Cream middle strip ---- */
.footer-mid { background: #f5f2ea; padding: 22px 0; }
.footer-mid-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 18px;
}
.f-follow { display: flex; align-items: center; gap: 16px; }
.f-follow > span { font-size: 16px; color: #1a1a1a; margin-right: 8px; }
.f-social {
  width: 36px; height: 36px; border-radius: 50%;
  background: #12380a; color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease, background .25s ease;
}
.f-social svg { width: 17px; height: 17px; }
.f-social:hover { transform: scale(1.15); background: #1f5c13; }

.f-contact { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.f-contact a {
  display: flex; align-items: center; gap: 8px;
  color: #12380a; text-decoration: none; font-size: 16px;
  transition: color .2s ease;
}
.f-contact a:hover { color: #2a7a1a; }
.f-ci { width: 17px; height: 17px; flex-shrink: 0; }

/* ---- Bottom dark strip ---- */
.footer-bottom { background: #12380a; padding: 34px 0 44px; }
.footer-bottom-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 14px;
}
.f-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.f-legal a {
  color: #eef3ec; text-decoration: none; font-size: 15px;
  transition: color .2s ease;
}
.f-legal a:hover { color: #a8d99a; }
.f-legal span { color: #eef3ec; font-size: 14px; }
.f-copy { color: #eef3ec; font-size: 15px; }

/* =========================================
   FOOTER RESPONSIVE
========================================= */
/* Laptop */
@media (max-width: 1280px) {
  .footer-inner { padding: 0 48px; }
  .footer-grid { gap: 36px; }
  .footer-grid > .f-col:nth-child(2) { padding-left: 60px; }
}

/* Tablet */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }
  .footer-grid > .f-col:nth-child(2) { padding-left: 0; }
  .f-col a, .f-col .f-head { white-space: normal; }
  .f-brand { grid-column: 1 / -1; }
  .f-desc { max-width: 520px; }
}

/* Mobile */
@media (max-width: 640px) {
  .footer-inner { padding: 0 20px; }
  .footer-top { padding: 44px 0 48px; }
  /* mobile grid system: brand full width, link columns 2-per-row */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .f-brand { grid-column: 1 / -1; }
  .f-col a { font-size: 14.5px; margin-bottom: 13px; }
  .f-head { font-size: 15px; margin-bottom: 14px; }
  .f-subscribe { max-width: 100%; }
  .footer-mid-row { flex-direction: column; align-items: flex-start; }
  .f-contact { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-bottom-row { flex-direction: column; align-items: flex-start; }
  .f-legal { row-gap: 6px; }
}

/* Small mobile */
@media (max-width: 380px) {
  .f-follow { flex-wrap: wrap; }
  .f-contact a { font-size: 14.5px; word-break: break-all; }
}







/* ============================================
 get in touch 
============================================ */

.contact-section {
    padding: 40px 20px;
    background-color: #EDF1F4;
    position: relative;
    z-index: 10;
}

.contact-section * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.contact-section .contact-card-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 32px;
    box-shadow: 0px 0px 60px 30px rgba(0, 0, 0, 0.03);
    display: flex;
    overflow: hidden;
    flex-direction: row;
    padding: 16px;
    gap: 40px;
}

.contact-section .contact-card-image {
    flex: 0 0 485px;
    height: 658px;
    position: relative;
    pointer-events: none;
    border-radius: 16px;
}

/* If user wants an img tag instead of background: */
.contact-section .contact-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
}

.contact-section .contact-card-form {
    flex: 1;
    padding: 20px 40px 20px 0;
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.contact-section .contact-card-form h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 66px;
    color: #000000;
    margin-bottom: 16px;
}

.contact-section .contact-card-form h2 span {
    color: #5B6D49; /* Matching the muted green from the design */
}

.contact-section .contact-card-form > p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.01em;
    color: #000000;
    margin-bottom: 40px;
    max-width: 625px;
}

.contact-section .wf-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
}

.contact-section .wf-grid-full {
    grid-column: span 2;
}

.contact-section .wf-input-group {
    position: relative;
}

.contact-section .wf-input-group label {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #8D8D8D;
    margin-bottom: 12px;
}

.contact-section .wf-input-group input, 
.contact-section .wf-input-group select, 
.contact-section .wf-input-group textarea {
    position: relative;
    z-index: 9999;
    pointer-events: auto !important;
    user-select: text;
    -webkit-user-select: text;
    width: 100%;
    border: none;
    border-bottom: 1px solid #8D8D8D;
    padding: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #333;
    background: transparent;
    outline: none;
    transition: border-color 0.3s;
}

.contact-section .wf-input-group select {
    cursor: pointer;
    appearance: none;
}

.contact-section .wf-input-group textarea {
    resize: none;
    height: 35px;
}

.contact-section .wf-input-group input:focus, 
.contact-section .wf-input-group select:focus, 
.contact-section .wf-input-group textarea:focus {
    border-bottom-color: #0C3C01;
}

.contact-section .wf-input-group input::placeholder,
.contact-section .wf-input-group textarea::placeholder {
    color: #8D8D8D;
}

.contact-section .wf-field-error {
    color: #FF5050;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.contact-section .btn-submit-wrap {
    margin-top: 40px;
    text-align: right;
}

.contact-section .btn-submit {
    background-color: #0C3C01;
    color: #FFFFFF;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 125%;
    cursor: pointer;
    transition: background 0.3s;
}

.contact-section .btn-submit:hover {
    background-color: #062100;
}

/* Hide elements meant to be hidden */
.contact-section .hidden-fields {
    display: none !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .contact-section .contact-card-wrapper {
        flex-direction: column;
    }
    .contact-section .contact-card-image {
        min-height: 250px;
    }
    .contact-section .contact-card-image img {
        padding: 10px;
        border-radius: 20px;
    }
    .contact-section .contact-card-form {
        padding: 30px 25px;
    }
    .contact-section .wf-grid {
        grid-template-columns: 1fr;
    }
    .contact-section .wf-grid-full {
        grid-column: span 1;
    }
    .contact-section .contact-card-form h2 {
        font-size: 28px;
    }
}