/* ==========================================================================
   Lombok Investment — Mega Footer  v1.0
   All selectors prefixed .lifooter- to avoid bleed into the theme.
   Brand: navy #0B1D3A · deep navy #060F1E · gold #C9A227 · white #FFFFFF
   Font: Plus Jakarta Sans throughout
   ========================================================================== */

.lifooter, .lifooter * { box-sizing: border-box; }

.lifooter {
  background: #0B1D3A;
  border-top: 3px solid #C9A227;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  color: #FFFFFF;
  margin-top: 0;
}

/* ── Newsletter strip ──────────────────────────────────────────────────────── */
.lifooter-newsletter {
  background: #060F1E;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 32px;
}

.lifooter-nl-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.lifooter-nl-label {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Unified bordered bar — all form children stretch inside it */
.lifooter-nl-form {
  display: flex;
  align-items: stretch;
  flex: 1;
  min-width: 0;
  flex-wrap: nowrap;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 2px;
  overflow: hidden;
}

.lifooter-nl-input {
  flex: 1;
  min-width: 0;
  padding: 0 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  color: #FFFFFF;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  transition: background 0.18s;
}

/* Name input slightly narrower than email */
.lifooter-nl-input--name { max-width: 160px; }

.lifooter-nl-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.lifooter-nl-input:focus { background: rgba(255, 255, 255, 0.1); }

/* Subscribe button — fills the right end of the bar */
.lifooter-nl-btn {
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  margin: 0;
  height: 42px;
  align-self: stretch;
  background: #C9A227;
  color: #0B1D3A;
  border: none;
  border-radius: 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  line-height: 1;
  transition: background 0.2s;
}
.lifooter-nl-btn:hover    { background: #DDB82E; }
.lifooter-nl-btn:disabled { background: rgba(201, 162, 39, 0.45); cursor: not-allowed; }

.lifooter-nl-msg {
  display: none;
  margin: 5px 0 0;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.lifooter-nl-msg.success { display: block; color: #6ee7b7; }
.lifooter-nl-msg.error   { display: block; color: #fca5a5; }

/* ── Link grid ─────────────────────────────────────────────────────────────── */
.lifooter-grid-wrap {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 32px 32px;
}

.lifooter-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 0;
}

/* Column shared */
.lifooter-col {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}
.lifooter-col:first-child { padding-left: 0; }
.lifooter-col:last-child  { padding-right: 0; border-right: none; }

.lifooter-col-heading {
  display: block;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A227;
  margin: 0 0 14px 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  line-height: 1;
}

/* Hard resets — override theme margin/padding on list elements */
.lifooter-links,
.lifooter-links li,
.lifooter-links a {
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.lifooter-links { list-style: none; }

.lifooter-links li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  display: block !important;
}
.lifooter-links li:last-child { border-bottom: none !important; }

.lifooter-links a {
  display: block !important;
  padding: 8px 0 !important;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
  letter-spacing: 0.15px !important;
  transition: color 0.15s !important;
}
.lifooter-links a:hover { color: #C9A227 !important; }

.lifooter-view-all {
  display: inline-block;
  margin-top: 14px;
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C9A227;
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
  padding-bottom: 2px;
  transition: border-color 0.15s;
}
.lifooter-view-all:hover { border-color: #C9A227; }

/* ── Brand column ──────────────────────────────────────────────────────────── */
.lifooter-col--brand { display: flex; flex-direction: column; }

.lifooter-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.lifooter-logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-shrink: 0;
  display: block;
}

.lifooter-brand-text {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 19px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  line-height: 1.15;
}
.lifooter-brand-text em { font-style: normal; color: #C9A227; }

.lifooter-tagline-headline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.lifooter-tagline {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.75;
  margin: 0;
}

/* ── Bottom bar ────────────────────────────────────────────────────────────── */
.lifooter-bar {
  background: #060F1E;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 16px 32px;
}

.lifooter-bar-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.lifooter-copy {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
}

.lifooter-partners a,
.lifooter-legal a {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.32);
  text-decoration: none;
  transition: color 0.15s;
}
.lifooter-partners a:hover,
.lifooter-legal a:hover { color: #C9A227; }

.lifooter-partners { display: flex; gap: 18px; flex-wrap: wrap; justify-content: center; }
.lifooter-legal    { display: flex; gap: 18px; flex-wrap: wrap; justify-content: flex-end; }

/* ==========================================================================
   MOBILE (≤ 980px)
   ========================================================================== */
@media (max-width: 980px) {
  .lifooter-newsletter { padding: 18px; }

  .lifooter-nl-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
  }

  .lifooter-nl-form {
    width: 100%;
    height: auto;
    flex-direction: column;
    border-radius: 2px;
    overflow: visible;
  }

  .lifooter-nl-input {
    width: 100%;
    max-width: none;
    height: 42px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .lifooter-nl-btn {
    width: 100%;
    height: 42px;
  }

  .lifooter-grid-wrap { padding: 36px 18px 28px; }

  .lifooter-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }

  .lifooter-col {
    padding: 0 20px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 28px;
  }
  .lifooter-col:nth-child(odd)  { padding-left: 0; }
  .lifooter-col:nth-child(even) { padding-right: 0; }
  .lifooter-col:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }

  .lifooter-bar { padding: 16px 18px; }

  .lifooter-bar-inner {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
  }

  .lifooter-partners { justify-content: center; }
  .lifooter-legal    { justify-content: center; }
}

@media (max-width: 600px) {
  .lifooter-grid { grid-template-columns: 1fr; }

  .lifooter-col {
    padding: 0 0 24px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .lifooter-col:last-child { border-bottom: none; padding-bottom: 0; }
}
