  /* ============================================
     TPP FOOTER — The Park Prodigy
     Drop into Elementor HTML widget (full-width section, no padding)
     ============================================ */

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --tpp-blue: #2B7DC9;
    --tpp-blue-dark: #1a5a94;
    --tpp-blue-darker: #164b7a;
    --tpp-light-blue: #6AB3F8;
    --tpp-orange: #F5A623;
    --tpp-orange-hover: #e6951a;
    --tpp-white: #ffffff;
    --tpp-light-gray: #f0f4f8;
    --tpp-text-light: rgba(255,255,255,0.85);
    --tpp-text-lighter: rgba(255,255,255,0.6);
  }

  .tpp-footer-wrap {
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--tpp-white);
    width: 100%;
  }

  /* ── ROW 1: CONVERSION BAR ── */
  .tpp-footer-cta {
    background: var(--tpp-white);
    padding: 28px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--tpp-light-gray);
  }

  .tpp-footer-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: repeating-linear-gradient(
      120deg,
      transparent,
      transparent 40px,
      rgba(43,125,201,0.02) 40px,
      rgba(43,125,201,0.02) 80px
    );
    pointer-events: none;
  }

  .tpp-footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
  }

  .tpp-footer-cta-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--tpp-blue);
  }

  .tpp-footer-cta-text span {
    display: inline-block;
    background: var(--tpp-orange);
    color: var(--tpp-white);
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 22px;
    margin: 0 3px;
  }

  .tpp-footer-cta-btn {
    display: inline-block;
    background: var(--tpp-orange);
    color: var(--tpp-white);
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245,166,35,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .tpp-footer-cta-btn:hover {
    background: var(--tpp-orange-hover);
    color: var(--tpp-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245,166,35,0.4);
  }

  /* ── ROW 2: MAIN FOOTER ── */
  .tpp-footer-main {
    background: var(--tpp-blue);
    padding: 50px 20px 40px;
  }

  .tpp-footer-main-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 30px;
  }

  .tpp-footer-brand-logo {
	max-width: 170px;
	height: auto;
	margin-bottom: 12px;
}

  .tpp-footer-tagline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.12);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--tpp-white);
    margin-bottom: 20px;
    letter-spacing: 0.3px;
  }

  .tpp-footer-tagline i {
    color: var(--tpp-orange);
    font-size: 13px;
  }

  .tpp-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--tpp-text-light);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
  }

  a.tpp-footer-contact-item:hover {
    color: var(--tpp-white);
  }

  .tpp-footer-contact-item i {
    color: #ffffff;
    font-size: 15px;
    margin-top: 3px;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
  }

  .tpp-footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
  }

  .tpp-footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--tpp-white);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
  }

  .tpp-footer-socials a:hover {
    background: var(--tpp-orange);
    transform: translateY(-2px);
  }

  /* Link Columns */
  .tpp-footer-col h4 {
    font-size: 15px;
    font-weight: bold;
    color: var(--tpp-white);
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 10px;
  }

  .tpp-footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: var(--tpp-orange);
    border-radius: 2px;
  }

  .tpp-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .tpp-footer-col ul li {
    margin-bottom: 10px;
  }

  .tpp-footer-col ul li a {
    color: var(--tpp-text-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
  }

  .tpp-footer-col ul li a:hover {
    color: var(--tpp-white);
    transform: translateX(3px);
  }

  .tpp-footer-col ul li a .tpp-new-badge {
    display: inline-block;
    background: var(--tpp-orange);
    color: var(--tpp-white);
    font-size: 9px;
    font-weight: bold;
    padding: 1px 6px;
    border-radius: 3px;
    margin-left: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }

  /* ── ROW 2.5: PARTNER WITH US ── */
  .tpp-footer-partner {
    background: var(--tpp-blue-dark);
    padding: 24px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .tpp-footer-partner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
  }

  .tpp-footer-partner-label {
    font-size: 15px;
    font-weight: bold;
    color: var(--tpp-white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
  }

  .tpp-footer-partner-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .tpp-partner-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    border: 2px solid var(--tpp-orange);
    border-radius: 50px;
    color: var(--tpp-white);
    text-decoration: none;
    font-family: Tahoma, Geneva, Verdana, sans-serif;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
    background: var(--tpp-orange);
  }

  .tpp-partner-btn:hover {
    background: var(--tpp-orange-hover);
    border-color: var(--tpp-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245,166,35,0.4);
  }

  .tpp-partner-btn i {
    font-size: 14px;
    color: var(--tpp-white);
  }

  /* ── ROW 3: TRUST BAR ── */
  .tpp-footer-trust {
    background: var(--tpp-blue-dark);
    padding: 28px 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .tpp-footer-trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
  }

  .tpp-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 200px;
    justify-content: center;
  }

  .tpp-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .tpp-trust-icon.tpp-trust-reviews {
    background: rgba(245, 166, 35, 0.2);
    color: var(--tpp-orange);
  }

  .tpp-trust-icon.tpp-trust-partner {
    background: rgba(106, 179, 248, 0.2);
    color: var(--tpp-light-blue);
  }

  .tpp-trust-icon.tpp-trust-castmember {
    background: rgba(255,255,255,0.12);
    color: var(--tpp-white);
  }

  .tpp-trust-icon.tpp-trust-secure {
    background: rgba(72, 199, 142, 0.2);
    color: #48c78e;
  }

  .tpp-trust-icon.tpp-trust-refund {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
  }

  .tpp-trust-info-label {
    font-size: 13px;
    font-weight: bold;
    color: var(--tpp-white);
    line-height: 1.3;
  }

  .tpp-trust-info-sub {
    font-size: 11px;
    color: var(--tpp-text-lighter);
    line-height: 1.3;
    margin-top: 2px;
  }

  .tpp-trust-stars {
    color: var(--tpp-orange);
    font-size: 13px;
    letter-spacing: 1px;
  }

  /* Dividers between trust items */
  .tpp-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
  }

  /* ── ROW 4: BOTTOM BAR ── */
  .tpp-footer-bottom {
    background: var(--tpp-blue-darker);
    padding: 18px 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .tpp-footer-bottom-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
  }

  .tpp-footer-copyright {
    font-size: 12px;
    color: var(--tpp-text-lighter);
  }

  .tpp-footer-legal {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
  }

  .tpp-footer-legal a {
    font-size: 12px;
    color: var(--tpp-text-lighter);
    text-decoration: none;
    transition: color 0.2s;
  }

  .tpp-footer-legal a:hover {
    color: var(--tpp-white);
  }

  .tpp-footer-seller {
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    margin-top: 10px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }


  /* old footer css */
    .sticky { position: fixed; top: 0; width: 100%; z-index: 99999999; }
    .sticky + .content { padding-top: 102px; }
    @media screen and (max-width:740px){
        .sticky { position: fixed; top: -6px; width: 100%; z-index: 999999;	}
    }
  /* old footer css end */


  /* ── RESPONSIVE ── */
  @media (max-width: 992px) {
    .tpp-footer-main-inner {
      grid-template-columns: 1fr 1fr;
      gap: 35px;
    }
    .tpp-footer-cta-text {
      font-size: 17px;
    }
    .tpp-footer-cta-text span {
      font-size: 19px;
    }
    .tpp-footer-partner-inner {
      flex-direction: column;
      gap: 14px;
    }
    .tpp-footer-partner-btns {
      justify-content: center;
    }
  }

  @media (max-width: 768px) {
    .tpp-footer-main-inner {
      grid-template-columns: 1fr;
      gap: 30px;
      text-align: center;
    }
    .tpp-footer-col h4::after {
      left: 50%;
      transform: translateX(-50%);
    }
    .tpp-footer-brand {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    .tpp-footer-contact-item {
      justify-content: center;
    }
    .tpp-footer-socials {
      justify-content: center;
    }
    .tpp-footer-tagline {
      margin-left: auto;
      margin-right: auto;
    }
    .tpp-footer-cta-inner {
      flex-direction: column;
      gap: 16px;
    }
    .tpp-footer-cta-text {
      font-size: 16px;
    }
    .tpp-footer-trust-inner {
      flex-direction: column;
      align-items: center;
      gap: 18px;
    }
    .tpp-trust-divider {
      width: 60px;
      height: 1px;
    }
    .tpp-trust-item {
      justify-content: center;
      min-width: unset;
    }
    .tpp-footer-bottom-inner {
      flex-direction: column;
      text-align: center;
    }
    .tpp-footer-legal {
      justify-content: center;
    }
    .tpp-footer-partner-inner {
      flex-direction: column;
      gap: 12px;
    }
    .tpp-footer-partner-btns {
      justify-content: center;
    }
  }

  @media (max-width: 480px) {
    .tpp-footer-cta {
      padding: 22px 16px;
    }
    .tpp-footer-cta-text {
      font-size: 15px;
    }
    .tpp-footer-cta-text span {
      font-size: 17px;
      display: block;
      margin: 6px auto;
      width: fit-content;
    }
    .tpp-footer-cta-btn {
      font-size: 14px;
      padding: 12px 28px;
    }
    .tpp-footer-main {
      padding: 35px 16px 30px;
    }
  }