/* ===============================
   TP Button Component — SAFE
=============================== */

:root {
  --tp-ff-p: 'Familjen Grotesk', sans-serif;
}

/* wrapper */
.tp-btn-section {
  display: block;
  margin-top: 18px;
  padding: 0;
}

/* ===== Button ===== */
.tp-ui-btn {
  --pad-y: clamp(10px, 1.2vw, 16px);
  --pad-x: clamp(22px, 4vw, 56px);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: var(--tp-ff-p);
  font-size: 16px;
  font-weight: 600;

  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  white-space: nowrap;

  background: linear-gradient(90deg,#021352,#A70C7E,#021352);
  background-size: 300% 300%;

  /* 🔥 faster animation */
  animation: tpBtnFlow 5s linear infinite;

  transition: .25s ease;
}

/* hover */
.tp-ui-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(247, 243, 243, 0.932);
}

/* animation */
@keyframes tpBtnFlow {
  0% {background-position:0% 50%;}
  50% {background-position:100% 50%;}
  100% {background-position:0% 50%;}
}

/* ===== About section center wrapper ===== */

#about-contact-btn-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

#mobile-tab-contact-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;

}




/* desktop button text bigger */
@media (min-width: 993px) {
  .tp-ui-btn {
    font-size: 18px;   /* change to 19/20 if you want more */
    font-weight: 700;
  }
}
/* ===============================
   RESPONSIVE TUNING
=============================== */

/* 💻 Desktop */
@media (min-width: 993px) {
  #about-contact-btn-wrap .tp-ui-btn {
    font-size: 17px;
    font-weight: 600;
    padding: 14px 52px;
    width: auto;
  }
}

/* 📱 Tablet */
@media (max-width: 992px) {
  #about-contact-btn-wrap .tp-ui-btn {
    font-size: 16px;
    font-weight: 700;          /* 👈 bolder */
    padding: 14px 44px;
    width: 100%;
    max-width: 280px;
    border-radius: 999px !important;
  }
}

/* 📲 Mobile */
@media (max-width: 576px) {
  #about-contact-btn-wrap .tp-ui-btn {
    font-size: 16px;
    font-weight: 700;          /* 👈 bold mobile */
    padding: 13px 34px;
    width: 82%;
    max-width: 240px;
    border-radius: 999px !important;
  }
}


/* only services section button left align */
#services-contact-wrap {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
}
/* 📲 Mobile */
@media (max-width: 576px) {
  #mobile-tab-contact-btn .tp-ui-btn {
    font-size: 16px;
    font-weight: 700;          /* 👈 bold mobile */
    padding: 13px 34px;
    width: 82%;
    max-width: 240px;
    border-radius: 999px !important;
    margin-top: 0;   /* 👈 adjust -8 / -15 as needed */
  }
}

/* Mobile + small tablet tuning for founder section CTA only */
@media (max-width: 992px) {
  #mobile-tab-contact-btn {
    margin-top: 16px;
    margin-bottom: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }

  #mobile-tab-contact-btn .tp-ui-btn {
    width: 100%;
    max-width: 320px;
    text-align: center;
    padding: 13px 30px;
  }
}

@media (max-width: 576px) {
  #mobile-tab-contact-btn {
    margin-top: 34px;
    margin-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
  }

  #mobile-tab-contact-btn .tp-ui-btn {
    width: 78%;
    max-width: 260px;
    padding: 12px 24px;
  }
}

@media (max-width: 360px) {
  #mobile-tab-contact-btn .tp-ui-btn {
    max-width: 100%;
    font-size: 15px;
    padding: 11px 20px;
  }
}

#services-cta-center {
  margin-top: 20px;
}

/* tablet + mobile center */
@media (max-width: 992px) {
  #services-cta-center {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
}


#services-cta-new {
  margin-top: 20px;
}

/* tablet + mobile center */
@media (max-width: 992px) {
  #services-cta-new {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
  }
}
/* ✅ Mobile hide */
@media (max-width: 767px) {
  #services-cta-new {
    display: none !important;
  }
}


