/* =====================================================
   SITE FOOTER — vpshc.com
   ===================================================== */

/* ── Variables ── */
:root {
  --footer-bg:        #0f172a;
  --footer-strip-bg:  #1e293b;
  --footer-bar-bg:    #080f1e;
  --footer-border:    rgba(255,255,255,.07);
  --footer-text:      #94a3b8;
  --footer-heading:   #f1f5f9;
  --footer-link:      #94a3b8;
  --footer-link-hover:#60a5fa;
  --footer-accent:    #3b82f6;
}

/* ── Contact Strip ── */
.footer-contact-strip {
  background: var(--footer-strip-bg);
  border-bottom: 1px solid var(--footer-border);
}
.fcs-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 32px;
  border-right: 1px solid var(--footer-border);
  transition: background .2s;
}
.fcs-item:hover { background: rgba(255,255,255,.03); }
.fcs-last { border-right: none; }
.fcs-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--footer-accent);
}
.fcs-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 3px;
}
.fcs-value {
  font-size: .95rem;
  font-weight: 600;
  color: var(--footer-heading);
  text-decoration: none;
  transition: color .2s;
}
.fcs-value:hover { color: var(--footer-accent); }
@media (max-width: 767px) {
  .fcs-item { border-right: none; border-bottom: 1px solid var(--footer-border); padding: 18px 20px; }
  .fcs-last { border-bottom: none; }
}

/* ── Main Footer Body ── */
.footer-main {
  background: var(--footer-bg);
  padding: 64px 0 48px;
}

/* Brand */
.footer-brand img { margin-bottom: 16px; display: block; }
.footer-brand-desc {
  font-size: .875rem;
  color: var(--footer-text);
  line-height: 1.75;
  max-width: 340px;
  margin-bottom: 20px;
}

/* Trust badges */
.footer-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .72rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,.08);
  border: 1px solid rgba(74,222,128,.2);
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: .3px;
}

/* Social */
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--footer-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--footer-text);
  font-size: 1.1rem;
  text-decoration: none;
  transition: all .2s;
}
.footer-social-btn:hover {
  background: var(--footer-accent);
  border-color: var(--footer-accent);
  color: #fff;
  transform: translateY(-2px);
}

/* Column titles */
.footer-col-title {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--footer-heading);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--footer-accent);
  display: inline-block;
}

/* Link list */
.footer-link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-link-list li {
  margin-bottom: 9px;
}
.footer-link-list li a {
  font-size: .865rem;
  color: var(--footer-link);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .2s;
}
.footer-link-list li a::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: #334155;
  flex-shrink: 0;
  transition: background .2s;
}
.footer-link-list li a:hover {
  color: var(--footer-link-hover);
  padding-left: 4px;
}
.footer-link-list li a:hover::before {
  background: var(--footer-accent);
}

/* Newsletter */
.footer-newsletter-desc {
  font-size: .865rem;
  color: var(--footer-text);
  margin-bottom: 16px;
  line-height: 1.65;
}
.footer-newsletter-form { width: 100%; }
.footer-newsletter-input-wrap {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--footer-border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
  position: relative;
}
.footer-newsletter-input-wrap:focus-within {
  border-color: var(--footer-accent);
  box-shadow: 0 0 0 3px rgba(59,130,246,.15);
}
.footer-newsletter-icon {
  padding: 0 12px;
  color: #475569;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.footer-newsletter-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 8px;
  font-size: .875rem;
  color: var(--footer-heading);
}
.footer-newsletter-input-wrap input::placeholder { color: #475569; }
.footer-newsletter-input-wrap button {
  background: var(--footer-accent);
  border: none;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
  letter-spacing: .3px;
}
.footer-newsletter-input-wrap button:hover { background: #2563eb; }

/* Status Box */
.footer-status-box {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--footer-border);
  border-radius: 12px;
  padding: 16px 18px;
}
.footer-status-title {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #64748b;
  margin-bottom: 12px;
}
.footer-status-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .82rem;
  color: var(--footer-text);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.footer-status-row:last-child { border-bottom: none; }
.footer-status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.footer-status-dot.online { background: #22c55e; box-shadow: 0 0 6px rgba(34,197,94,.5); }
.footer-status-dot.warning { background: #f59e0b; }
.footer-status-dot.offline { background: #ef4444; }
.footer-status-pct {
  font-size: .78rem;
  font-weight: 700;
  color: #22c55e;
}

/* ── Bottom Bar ── */
.footer-bottom-bar {
  background: var(--footer-bar-bg);
  border-top: 1px solid var(--footer-border);
  padding: 18px 0;
}
.footer-copy {
  font-size: .82rem;
  color: #475569;
}
.footer-copy strong { color: #94a3b8; }
.footer-copy a { color: #475569; text-decoration: none; transition: color .2s; }
.footer-copy a:hover { color: var(--footer-accent); }

/* Cert badges */
.footer-cert-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.footer-cert {
  font-size: .72rem;
  font-weight: 600;
  color: #475569;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--footer-border);
  padding: 4px 10px;
  border-radius: 6px;
}

/* Payments */
.footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-payments img {
  height: 22px;
  opacity: .6;
  filter: grayscale(1);
  transition: all .2s;
  border-radius: 4px;
}
.footer-payments img:hover { opacity: 1; filter: grayscale(0); }

/* Override global footer class conflict */
.site-footer { background: var(--footer-bg); }

@media (max-width: 991px) {
  .footer-main { padding: 48px 0 36px; }
  .footer-brand-desc { max-width: 100%; }
  .footer-cert-badges { justify-content: flex-start; }
  .footer-payments { justify-content: flex-start; }
}
@media (max-width: 575px) {
  .footer-cert-badges { display: none; }
}
