/* ================================
   FOOTER — Tavion Clean Premium
================================ */

.site-footer {
  position: relative;
  margin-top: 120px;
  padding: 0 7% 40px;
  overflow: hidden;
}

/* Top line */
.site-footer::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,162,77,0.5),
    transparent
  );
}

/* Background Orbs */

.footer-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.footer-orb-one {
  width: 420px;
  height: 420px;
  right: -120px;
  top: 40px;
  background: rgba(201,162,77,0.14);
}

.footer-orb-two {
  width: 300px;
  height: 300px;
  left: -120px;
  bottom: -80px;
  background: rgba(255,255,255,0.05);
}

/* Container */

.footer-shell {
  position: relative;
  margin-top: 80px;
  padding: 48px;
  border-radius: 40px;

  border: 1px solid rgba(255,255,255,0.1);

  background:
    radial-gradient(circle at 80% 10%, rgba(201,162,77,0.18), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.05), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.015)),
    rgba(8,8,8,0.82);

  backdrop-filter: blur(24px);

  box-shadow:
    0 40px 120px rgba(0,0,0,0.5),
    inset 0 1px 0 rgba(255,255,255,0.08);

  overflow: hidden;
}

/* subtle inner frame */
.footer-shell::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

/* ================================
   MAIN GRID
================================ */

.footer-main {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* ================================
   BRAND BLOCK
================================ */

.footer-brand {
  padding: 28px;
  border-radius: 28px;

  border: 1px solid rgba(255,255,255,0.08);

  background:
    radial-gradient(circle at 80% 20%, rgba(201,162,77,0.16), transparent 36%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.012)),
    rgba(0,0,0,0.25);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo span {
  width: 44px;
  height: 44px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  font-weight: 900;
  color: #050505;

  background: linear-gradient(135deg, var(--gold), var(--gold-light));

  box-shadow:
    0 0 30px rgba(201,162,77,0.4),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

.footer-logo strong {
  color: var(--white);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.footer-brand p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Status */

.footer-status {
  margin-top: 28px;

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;
  border-radius: 999px;

  border: 1px solid rgba(126,231,135,0.25);
  background: rgba(126,231,135,0.08);

  font-size: 0.9rem;
}

.footer-status i {
  width: 8px;
  height: 8px;
  border-radius: 50%;

  background: #7ee787;

  box-shadow: 0 0 12px rgba(126,231,135,0.7);
}

/* ================================
   NAV GRID
================================ */

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.footer-column {
  padding: 22px;
  border-radius: 24px;

  border: 1px solid rgba(255,255,255,0.07);

  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    rgba(255,255,255,0.02);

  display: flex;
  flex-direction: column;
  gap: 10px;

  transition: 0.25s ease;
}

.footer-column:hover {
  border-color: rgba(201,162,77,0.25);
  transform: translateY(-4px);
}

.footer-column h4 {
  margin-bottom: 10px;
  font-size: 0.75rem;

  color: var(--gold);

  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-column a {
  color: var(--gray);
  font-size: 0.95rem;

  transition: 0.2s ease;
}

.footer-column a:hover {
  color: var(--white);
  transform: translateX(4px);
}

/* ================================
   BOTTOM
================================ */

.footer-bottom {
  position: relative;
  z-index: 2;

  margin-top: 36px;
  padding-top: 20px;

  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  color: var(--gray);
}

.footer-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-meta span {
  padding: 8px 12px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);

  font-size: 0.85rem;
}

.footer-meta span:first-child {
  border-color: rgba(201,162,77,0.25);
  background: rgba(201,162,77,0.08);
  color: var(--gold-light);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }

  .footer-shell {
    padding: 24px;
    border-radius: 28px;
  }

  .footer-shell::before {
    inset: 14px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .footer-column {
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}