 + HTML + <script>
  Include via tp-include.js  →  tpLoad('path/to/footer.html', 'footer')
================================================================ -->

<style>
  /* ── Footer design tokens ── */
  #tp-footer,
  #tp-footer * {
    box-sizing: border-box;
  }

  #tp-footer {
    background: #0d1c1f;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
    font-family: "DM Sans", system-ui, sans-serif;
  }

  /* Top gradient accent line */
  #tp-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent 0%,
      #0a6b7a 30%,
      #e09b1a 50%,
      #0a6b7a 70%,
      transparent 100%
    );
    z-index: 1;
  }
  /* Radial depth glow */
  #tp-footer::after {
    content: "";
    position: absolute;
    top: -140px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 480px;
    background: radial-gradient(
      ellipse,
      rgba(10, 107, 122, 0.07) 0%,
      transparent 65%
    );
    pointer-events: none;
    z-index: 0;
  }

  /* ── Contact bar (top strip) ── */
  .footer-top-bar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 13px 0;
    position: relative;
    z-index: 2;
  }
  .footer-top-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-top-left {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: "DM Mono", monospace;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.44);
    letter-spacing: 0.06em;
  }
  .footer-status-dot {
    width: 7px;
    height: 7px;
    background: #1ab3c8;
    border-radius: 50%;
    flex-shrink: 0;
    animation: ftDotPulse 2.8s ease-in-out infinite;
  }
  @keyframes ftDotPulse {
    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(26, 179, 200, 0.5);
    }
    50% {
      box-shadow: 0 0 0 6px rgba(26, 179, 200, 0);
    }
  }
  .footer-top-left strong {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
  }
  .footer-top-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
  }
  .footer-top-right a {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;
    transition: color 0.22s ease;
  }
  .footer-top-right a i {
    font-size: 0.76rem;
  }
  .footer-top-right a:hover {
    color: #1ab3c8;
  }
  .footer-top-right a.wa:hover {
    color: #25d366;
  }

  /* ── Main body ── */
  .footer-main {
    padding: 70px 0 56px;
    position: relative;
    z-index: 2;
  }
  .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.35fr;
    gap: 60px;
  }

  /* ── Brand column ── */
  .footer-brand-col {
    display: flex;
    flex-direction: column;
  }
  .footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 18px;
    text-decoration: none;
  }
  .footer-logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, #04424c, #0a6b7a);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(4, 66, 76, 0.4);
    overflow: hidden;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .footer-logo-mark::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), transparent);
  }
  .footer-brand-logo:hover .footer-logo-mark {
    transform: scale(1.07) rotate(-3deg);
  }
  .footer-logo-mark svg {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
  }
  .footer-brand-name {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.28rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -0.01em;
  }
  .footer-brand-sub {
    font-family: "DM Mono", monospace;
    font-size: 0.55rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 3px;
  }
  .footer-brand-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.78;
    margin-bottom: 22px;
    max-width: 300px;
  }

  /* Contact items in brand col */
  .footer-contact-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 22px;
  }
  .footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .fci-icon {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.74rem;
    color: #1ab3c8;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.22s ease;
  }
  .footer-contact-item:hover .fci-icon {
    background: rgba(26, 179, 200, 0.1);
    border-color: rgba(26, 179, 200, 0.22);
  }
  .fci-body {
    font-size: 0.845rem;
    color: rgba(255, 255, 255, 0.44);
    line-height: 1.62;
  }
  .fci-label {
    display: block;
    font-family: "DM Mono", monospace;
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.26);
    margin-bottom: 2px;
  }
  .fci-body a {
    color: rgba(255, 255, 255, 0.44);
    text-decoration: none;
    transition: color 0.2s;
  }
  .fci-body a:hover {
    color: #1ab3c8;
  }

  /* Social icons */
  .footer-socials {
    display: flex;
    gap: 8px;
    margin-bottom: 0;
  }
  .footer-social {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.09);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
    transition: all 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .footer-social:hover {
    background: rgba(26, 179, 200, 0.13);
    border-color: rgba(26, 179, 200, 0.28);
    color: #1ab3c8;
    transform: translateY(-3px);
  }
  .footer-social-wa:hover {
    background: rgba(37, 211, 102, 0.12) !important;
    border-color: rgba(37, 211, 102, 0.28) !important;
    color: #25d366 !important;
  }

  /* ── Link columns ── */
  .footer-col-title {
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 1.02rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 13px;
    position: relative;
  }
  .footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #0a6b7a, #e09b1a);
    border-radius: 2px;
  }
  .footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 0;
    font-size: 0.865rem;
    color: rgba(255, 255, 255, 0.44);
    text-decoration: none;
    transition: all 0.22s ease;
    position: relative;
  }
  .footer-links li a::before {
    content: "";
    width: 0;
    height: 1.5px;
    background: #0a6b7a;
    border-radius: 1px;
    transition: width 0.22s ease, margin-right 0.22s ease;
    flex-shrink: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0;
  }
  .footer-links li a:hover {
    color: rgba(255, 255, 255, 0.82);
    padding-left: 0;
    gap: 7px;
  }
  .footer-links li a:hover::before {
    width: 10px;
  }

  /* ── CTA column ── */
  .footer-cta-col {
    display: flex;
    flex-direction: column;
  }
  .footer-cta-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.72;
    margin-bottom: 20px;
  }
  .footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: linear-gradient(135deg, #8b5e06, #e09b1a);
    color: #fff;
    border-radius: 6px;
    font-family: "DM Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.03em;
    box-shadow: 0 4px 18px rgba(200, 130, 10, 0.3);
    transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
    margin-bottom: 24px;
    align-self: flex-start;
  }
  .footer-cta-btn:hover {
    box-shadow: 0 8px 28px rgba(200, 130, 10, 0.44);
    transform: translateY(-2px);
  }

  /* Certification badges */
  .footer-certifications {
    display: flex;
    flex-direction: column;
    gap: 9px;
  }
  .footer-cert-badge {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 13px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    transition: all 0.24s ease;
    cursor: default;
  }
  .footer-cert-badge:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.12);
  }
  .fcb-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
  }
  .footer-cert-badge > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
  }
  .footer-cert-badge strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    display: block;
  }
  .footer-cert-badge span {
    font-size: 0.67rem;
    color: rgba(255, 255, 255, 0.32);
    font-family: "DM Mono", monospace;
    letter-spacing: 0.05em;
    display: block;
  }

  /* ── Bottom bar ── */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    position: relative;
    z-index: 2;
  }
  .footer-bottom-inner {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
  }
  .footer-bottom-left {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.26);
    margin: 0;
  }
  .footer-bottom-left strong {
    color: rgba(255, 255, 255, 0.38);
    font-weight: 500;
  }
  .footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .footer-bottom-right a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.28);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-bottom-right a:hover {
    color: rgba(255, 255, 255, 0.62);
  }
  .footer-bottom-right span {
    color: rgba(255, 255, 255, 0.18);
    font-size: 0.8rem;
  }

  /* ── Back to top button ── */
  .tp-back-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #04424c, #0a6b7a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(4, 66, 76, 0.35);
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: all 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 900;
  }
  .tp-back-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .tp-back-top:hover {
    background: linear-gradient(135deg, #0a6b7a, #0e8e9f);
    box-shadow: 0 8px 28px rgba(10, 107, 122, 0.44);
    transform: translateY(-3px);
  }

  /* ── Responsive ── */
  @media (max-width: 1100px) {
    .footer-grid {
      grid-template-columns: 1fr 1fr;
      gap: 44px;
    }
    .footer-brand-col {
      grid-column: 1 / -1;
    }
    .footer-brand-desc {
      max-width: 100%;
    }
  }
  @media (max-width: 767px) {
    #tp-footer .container {
      padding: 0 24px;
    }
    .footer-top-inner {
      padding: 0 24px;
    }
    .footer-bottom-inner {
      padding: 0 24px;
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
    }
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 34px;
    }
    .footer-main {
      padding: 50px 0 40px;
    }
    .tp-back-top {
      bottom: 20px;
      right: 20px;
    }
  }
