/*--------------------------------------------------------------
# Premium Footer (.tp-footer)
--------------------------------------------------------------*/
.tp-footer {
  background: #080F1E;
  background-image:
    radial-gradient(ellipse 70% 60% at 10% 0%, rgba(15,76,129,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 90% 100%, rgba(0,184,169,0.12) 0%, transparent 55%);
  color: #94A3B8;
  font-size: 0.875rem;
  position: relative;
}

/* Body */
.tp-footer-body {
  padding: 56px 0 40px;
}

/* Logo */
.tp-footer-logo {
  display: inline-block;
  margin-bottom: 14px;
}

.tp-footer-logo img {
  max-height: 52px;
  width: auto;
}

/* Description */
.tp-footer-desc {
  font-size: 0.855rem;
  color: #64748B;
  line-height: 1.75;
  margin: 0 0 18px;
  max-width: 340px;
}

/* Contact list */
.tp-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tp-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.835rem;
  color: #64748B;
  line-height: 1.55;
}

.tp-footer-contact li i {
  font-size: 0.85rem;
  color: #00B8A9;
  flex-shrink: 0;
  margin-top: 2px;
}

.tp-footer-contact a {
  color: #94A3B8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tp-footer-contact a:hover { color: #fff; }

/* Socials */
.tp-footer-socials {
  display: flex;
  gap: 8px;
}

.tp-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748B;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.tp-social:hover {
  background: rgba(0,184,169,0.18);
  border-color: rgba(0,184,169,0.40);
  color: #5EEAD4;
  transform: translateY(-2px);
}

/* Column headings */
.tp-footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}

/* Nav links */
.tp-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.tp-footer-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 0.855rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, gap 0.2s ease;
  position: relative;
}

.tp-footer-links a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background: #00B8A9;
  transition: width 0.2s ease;
  flex-shrink: 0;
}

.tp-footer-links a:hover {
  color: #fff;
  gap: 8px;
}

.tp-footer-links a:hover::before { width: 10px; }

/* CTA column */
.tp-footer-cta-text {
  font-size: 0.855rem;
  color: #64748B;
  line-height: 1.65;
  margin: 0 0 14px;
}

.tp-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: linear-gradient(135deg, #0F4C81, #00B8A9);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,184,169,0.10);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  margin-bottom: 16px;
}

.tp-footer-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0,184,169,0.16);
  color: #fff;
}

/* Trust pills */
.tp-footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tp-footer-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 600;
  color: #475569;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  padding: 4px 10px;
  border-radius: 50px;
}

.tp-footer-trust span i {
  color: #00B8A9;
  font-size: 0.75rem;
}

/* Divider */
.tp-footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
  margin: 0 24px;
}

/* Bottom bar */
.tp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 0;
}

.tp-footer-copy {
  font-size: 0.80rem;
  color: #334155;
  margin: 0;
}

.tp-footer-copy strong { color: #475569; }

.tp-footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tp-footer-legal a {
  font-size: 0.80rem;
  color: #334155;
  text-decoration: none;
  transition: color 0.2s ease;
}

.tp-footer-legal a:hover { color: #fff; }

/* Responsive */
@media (max-width: 991px) {
  .tp-footer-body { padding: 44px 0 32px; }
  .tp-footer-desc { max-width: 100%; }
}

@media (max-width: 575px) {
  .tp-footer-body { padding: 36px 0 28px; }
  .tp-footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .tp-footer-legal { gap: 14px; }
  .tp-footer-cta-btn { width: 100%; justify-content: center; }
}

