/* Footer styles - enqueued via functions.php */

/* ===== RESET & CORE ===== */
    html, body {
      overflow-x: hidden !important;
      margin: 0 !important; width: 100% !important;
    }
    
    /* Variables (Original Colors Preserved) */
    :root{
      --g:#6CC04A;
      --ink:#0e2b12;
      --ink-soft:#16481e;
      --white:#fff;
      --border: rgba(0,0,0,.08);
      --btn:#1B5E20;
      --card:#ffffff;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    }

    /* Full Bleed Footer Layout */
    .footer-green.full-bleed{
      position:relative; width:100%;
      background:var(--g); color:var(--ink);
      margin-bottom:0!important; padding:0; box-sizing: border-box;
      border-radius: 32px 32px 0 0;
      box-shadow: 0 -10px 30px rgba(0,0,0,0.05);
    }

    .ft-wrap{ max-width:1200px; margin-inline:auto; padding:40px 20px; }

    a{ color:inherit; text-decoration:none; transition: all 0.2s ease; }
    
    /* ===== TRACKING SECTION ===== */
    .ft-track{
      background:var(--white);
      border-radius:16px;
      padding:24px;
      box-shadow: var(--shadow-md);
      margin-bottom:40px;
      border: 1px solid rgba(255,255,255,0.5);
    }
    .ft-label{ display:block; font-weight:800; font-size: 1.1rem; margin-bottom:12px; color:var(--ink-soft); }
    
    /* Inputs & Forms */
    .ft-inline{ display:flex; gap:12px; }
    .ft-inline input{
      flex:1 1 auto; height:48px; 
      border-radius:12px; border:1px solid transparent;
      background:#f3f6f3;
      color:#111; padding:0 18px; outline:none;
      transition: all 0.2s;
      font-size: 1rem;
    }
    .ft-inline input:focus{
        background: #fff;
        box-shadow: 0 0 0 3px rgba(255,255,255,0.5), 0 0 0 5px var(--g);
    }
    
    .ft-btn{
      height:48px; padding:0 24px; border-radius:12px; border:0; cursor:pointer;
      font-weight:700; font-size: 1rem; color:#fff; background:var(--btn);
      box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
      transition: transform 0.2s;
      white-space: nowrap;
    }
    .ft-btn:hover{ transform: translateY(-2px); filter:brightness(1.1); }

    /* ===== GRID LAYOUT ===== */
    .ft-grid{ display:grid; grid-template-columns: 1fr 1.3fr 1.2fr; gap:40px; }
    .ft-title{ font-weight:900; font-size: 1.15rem; margin:0 0 18px; color:var(--ink-soft); text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.9; }

    /* Menu Links */
    .ft-links{ list-style:none; margin:0; padding:0; }
    .ft-links li { margin-bottom: 10px; }
    .ft-links a{ 
        display:inline-block; 
        font-weight: 500;
        opacity: 0.85;
    }
    .ft-links a:hover{ 
        opacity: 1; 
        transform: translateX(6px);
        text-shadow: 0 0 1px rgba(0,0,0,0.1);
    }

    /* Bank Cards */
    .bank-card{
      display:flex; gap:16px; align-items:center;
      background:var(--card); 
      border-radius:16px; padding:18px; 
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s;
    }
    .bank-card:hover{ transform: translateY(-3px); box-shadow: var(--shadow-md); }
    
    .bank-badge{
      width:54px;height:54px;border-radius:14px; 
      display:grid; place-items:center;
      font-weight:900; font-size:22px; color:#fff; background:var(--btn);
      box-shadow: inset 0 -4px 8px rgba(0,0,0,.2);
      flex-shrink: 0;
    }
    .bank-name{ font-weight:800; font-size: 0.95rem; color: var(--ink); }
    .bank-line{ font-size: 0.9rem; opacity:.9; margin-top: 2px; }
    .bank-line.name { font-size: 0.8rem; opacity: 0.75; margin-top: 4px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 220px;}

    /* Contact Section */
    .ft-contact__title{ margin:20px 0 8px; font-weight:800; font-size: 1.1rem; }
    .contact-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px;}
    .contact-list a, .contact-list span { font-weight: 600; font-size: 0.95rem; opacity: 0.9; display: flex; align-items: center; gap: 8px;}
    .contact-list a:hover { opacity: 1; text-decoration: underline;}

    .ft-public-docs{
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(14,43,18,.12);
    }
    .ft-public-docs__text{
      margin: 0;
      line-height: 1.7;
      font-size: 0.95rem;
      opacity: 0.95;
    }
    .ft-public-docs__text a{
      font-weight: 700;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    /* ===== BOTTOM BAR ===== */
    .ft-bottom{
      background: rgba(0,0,0,.08);
      border-top:1px solid rgba(0,0,0,.05);
      padding-bottom: env(safe-area-inset-bottom, 0px) !important; 
    }
    .ft-bottom .ft-wrap{ padding:16px 20px; }
    .ft-bottom__row{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
      text-align:center;
    }
    .ft-bottom small{ color:var(--ink-soft); font-weight: 600; opacity: 0.8; }
    .ft-bottom__meta a{
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 700;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px){ .ft-grid{ grid-template-columns: 1fr 1fr; } }
    @media (max-width: 768px){
      .footer-green.full-bleed{ border-radius: 20px 20px 0 0; }
      .ft-grid{ grid-template-columns: 1fr; gap: 30px; }
      .ft-inline{ flex-direction:column; }
      .ft-btn{ width:100%; }
      .bank-line.name { white-space: normal; }
      .ft-bottom__row{
        justify-content:center;
      }
    }
    
    /* Force Cleanups */
    .site-footer{ margin-bottom:0!important; }
    #colophon{ margin-bottom: 0 !important; display: block !important; }
    #page, .site, .site-content { margin-bottom:0 !important; }

/* Visual polish */
.footer-green.full-bleed {
  background: linear-gradient(180deg, #6CC04A 0%, #5fb842 100%);
}
.ft-track {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.ft-btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ft-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(27, 94, 32, 0.4);
}
.bank-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.ft-links a {
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.ft-scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6CC04A;
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(108,192,74,.35);
  z-index: 9990;
  transition: transform .2s ease, opacity .2s ease;
  opacity: 0;
  transform: translateY(10px);
}
.ft-scroll-top[hidden] { display: none; }
.ft-scroll-top.visible {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.ft-scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(108,192,74,.5);
}
@media (max-width: 768px) {
  .ft-scroll-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
}
