/* ============================================================
   File: 05-footer.css
   Footer v2 - the current short-form footer.
   ============================================================ */

/* =========================================================
   Footer v2 — short, impactful
   ========================================================= */
.footer-v2 {
  background: #0A2540;
  color: #fff;
  padding: 80px 0 28px;
  position: relative;
  overflow: hidden;
}
.footer-v2::before {
  content: "";
  position: absolute;
  top: -200px;
  inset-inline-end: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,.25), transparent 70%);
  filter: blur(60px);
}
.footer-v2 .container { position: relative; z-index: 1; }

.footer-v2-mark {
  text-align: center;
  margin-bottom: 56px;
}
.footer-v2-logo {
  width: 88px; height: 88px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 16px 30px rgba(0,212,255,.4));
  animation: spin3d 16s linear infinite;
  transform-style: preserve-3d;
}
.footer-v2-logo img { width: 100%; height: 100%; }
.footer-v2-tagline {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-wrap: balance;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.15;
}
html[lang="ar"] .footer-v2-tagline { font-family: var(--font-ar-display); letter-spacing: 0; }
.footer-v2-tagline em {
  font-style: normal;
  background: linear-gradient(120deg, #00D4FF, #5BB8FF);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-v2-row {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  margin: 36px 0 56px;
  flex-wrap: wrap;
}
.footer-v2-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all .2s;
}
html[lang="ar"] .footer-v2-btn { font-family: var(--font-ar-display); }
.footer-v2-btn.primary {
  background: linear-gradient(135deg, #00D4FF, #5BB8FF);
  color: #0A2540;
  box-shadow: 0 12px 30px -10px rgba(0,212,255,.6);
}
.footer-v2-btn.primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -10px rgba(0,212,255,.8); }
.footer-v2-btn.ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,.18);
}
.footer-v2-btn.ghost:hover { background: rgba(255,255,255,.14); }

.footer-v2-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 24px;
}
@media (max-width: 820px) { .footer-v2-info { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 480px) { .footer-v2-info { grid-template-columns: 1fr; } }

.footer-v2-info .col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}
html[lang="ar"] .footer-v2-info .col h4 { font-family: var(--font-ar); letter-spacing: 0; text-transform: none; font-size: 13px; }
.footer-v2-info .col a, .footer-v2-info .col p {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  transition: color .2s;
}
.footer-v2-info .col a:hover { color: #00D4FF; }

.footer-v2-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 12.5px;
  color: rgba(255,255,255,.5);
}
.footer-v2-bottom .socials { display: flex; gap: 10px; }
.footer-v2-bottom .socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: all .2s;
}
.footer-v2-bottom .socials a:hover {
  background: #00D4FF;
  color: #0A2540;
  transform: translateY(-2px);
}

@media (max-width: 520px) {
  .footer-v2 { padding: 56px 0 24px; }
  .footer-v2-mark { margin-bottom: 36px; }
  .footer-v2-row { flex-direction: column; gap: 10px; }
  .footer-v2-row .footer-v2-btn { width: 100%; justify-content: center; }
}


