/* ======================================================
   FOOTER – CORPORATE PREMIUM FINAL VERSION
====================================================== */

/* ================= BASE ================= */

.footer-ultra {
  background: #0f1f45; /* solid navy */
  color: #e2e8f0;
  padding: 80px 0 0;
  position: relative;
}

/* Gold top divider */
.footer-ultra::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* ================= GRID ================= */

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 25px 70px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
}

/* ======================================================
   BRAND
====================================================== */

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.footer-logo {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.5));
}

.footer-brand h3 {
  font-size: 22px;
  font-weight: 600;
  color: #d4af37; /* emas solid */
  line-height: 1.3;
  margin: 0;
}

/* ================= CONTACT CARD ================= */

.footer-contact {
  background: rgba(255,255,255,0.05);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.footer-contact span {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
}

.footer-contact span:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  color: #d4af37;
  font-size: 14px;
  margin-top: 3px;
  min-width: 16px;
}

/* ======================================================
   LINKS
====================================================== */

.footer-links h4,
.footer-cta h4 {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  color: #cbd5e1;
  margin-bottom: 12px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.25s ease;
  position: relative;
}

.footer-links a::before {
  content: "•";
  color: #d4af37;
  margin-right: 8px;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* ======================================================
   CTA
====================================================== */

.footer-cta p {
  font-size: 14px;
  margin-bottom: 22px;
  opacity: 0.9;
  max-width: 260px;
}

.footer-btn {
  background: linear-gradient(135deg, #d4af37, #f1d37a);
  color: #1a1a1a;
  padding: 12px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s ease;
  box-shadow: 0 10px 25px rgba(212,175,55,0.35);
}

.footer-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(212,175,55,0.5);
}

/* ======================================================
   BOTTOM
====================================================== */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 25px 20px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom span {
  font-size: 13px;
  opacity: 0.85;
}

.designer-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.designer-link strong {
  color: #d4af37;
}

.designer-link:hover {
  color: #ffffff;
}

/* ======================================================
   📱 MOBILE VERSION – CLEAN & BALANCED
====================================================== */

@media (max-width: 992px) {

  .footer-ultra {
    padding-top: 60px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-bottom: 60px;
  }

  /* BRAND */

  .footer-brand-header {
    justify-content: flex-start;
  }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-brand h3 {
    font-size: 18px;
  }

  /* CONTACT */

  .footer-contact {
    padding: 18px;
  }

  .footer-contact span {
    font-size: 13px;
  }

  /* LINKS */

  .footer-links {
    margin-top: 5px;
  }

  .footer-links a {
    padding: 4px 0;
  }

  /* CTA */

  .footer-cta p {
    font-size: 13px;
  }

  .footer-btn {
    width: 100%;
    max-width: 280px;
  }

  /* BOTTOM */

  .footer-bottom-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}
