/* ════════════════════════════════════════════════════════════════
   FOOTER EMPIRE HQ — Awalim World Headquarters
   World-Domination Upgrade v1.0
════════════════════════════════════════════════════════════════ */

/* ── Footer Top Upgrade ── */
.footer-empire-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 60px 0 50px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Brand Column ── */
.footer-brand-elite {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-brand-elite img {
  height: 38px;
  width: auto;
  opacity: 0.9;
}

.footer-brand-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  font-family: 'Cairo', sans-serif;
  max-width: 240px;
}

/* ── Dubai Live Clock ── */
.footer-dubai-clock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(163,207,43,0.06);
  border: 1px solid rgba(163,207,43,0.15);
  border-radius: 10px;
  padding: 8px 14px;
  font-family: 'Outfit', monospace;
  font-size: 13px;
  color: #a3cf2b;
  width: fit-content;
  margin-top: 4px;
}

.footer-dubai-clock i {
  font-size: 11px;
  opacity: 0.7;
}

#footerDubaiTime {
  letter-spacing: 1px;
  font-weight: 600;
  min-width: 70px;
}

.footer-uae-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.footer-uae-badge img {
  height: 14px !important;
  width: auto !important;
  border-radius: 2px;
  opacity: 0.8 !important;
}

/* ── Nav Columns ── */
.footer-col-elite h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
  font-family: 'Outfit', monospace;
}

.footer-col-elite a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  margin-bottom: 12px;
  font-family: 'Cairo', sans-serif;
  position: relative;
  width: fit-content;
  transition: color 0.25s ease;
}

.footer-col-elite a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0;
  height: 1px;
  background: #a3cf2b;
  transition: width 0.3s ease;
}

.footer-col-elite a:hover {
  color: #a3cf2b;
}

.footer-col-elite a:hover::after {
  width: 100%;
}

/* ── World Dots ── */
.world-presence {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.world-dot {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 7px;
  padding: 4px 9px;
  font-family: 'Outfit', monospace;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.world-dot:hover {
  background: rgba(163,207,43,0.08);
  border-color: rgba(163,207,43,0.2);
  color: rgba(163,207,43,0.8);
}

.world-dot span { font-size: 14px; }

/* ── Footer Social Elite ── */
.footer-social-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}

.footer-social-btn:hover {
  background: rgba(163,207,43,0.12);
  border-color: rgba(163,207,43,0.3);
  color: #a3cf2b;
  transform: translateY(-3px);
}

/* ── Footer Bottom Signature ── */
.footer-signature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0 0;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-rights {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  font-family: 'Outfit', monospace;
}

.footer-palestine-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-family: 'Cairo', sans-serif;
}

.footer-palestine-strip .ph-flag {
  font-size: 18px;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,0.5));
  animation: flagBreathe 3s ease infinite;
}

@keyframes flagBreathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1) rotate(2deg); }
}

.footer-made-heart {
  color: #ef4444;
  animation: heartBeat 1.5s ease infinite;
  display: inline-block;
}

@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  15% { transform: scale(1.25); }
  30% { transform: scale(1); }
  45% { transform: scale(1.15); }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .footer-empire-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 560px) {
  .footer-empire-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-signature {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
