/* =========================
   FOOTER LUXURY – BENSUGIH
========================= */

.footer-luxury {
  position: relative;
  background: linear-gradient(
    180deg,
    #1f8f87 0%,
    #0f5f5a 55%,
    #083e3b 100%
  );
  color: #ffffff;
  padding: 90px 0 40px;
  overflow: hidden;
}

/* glossy shine overlay */
.footer-luxury::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,0) 35%,
      rgba(255,255,255,0.18) 50%,
      rgba(255,255,255,0) 65%
    );
  opacity: .35;
  pointer-events: none;
  transform: translateX(-120%);
  animation: footerShine 14s ease-in-out infinite;
}


/* soft vignette depth */
.footer-luxury::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0) 40%,
    rgba(0,0,0,0.25) 100%
  );
  pointer-events: none;
}

.footer-luxury .container {
  position: relative;
  z-index: 2;
}

/* =========================
   TOP GRID
========================= */

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer-logo img {
  max-width: 190px;
  margin-bottom: 18px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.35));
}

.footer-brand p {
  max-width: 420px;
  line-height: 1.7;
  opacity: .95;
}

/* headings */
.footer-grid h4 {
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: #ffffff;
}

/* lists */
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 12px;
  opacity: .9;
}

.footer-grid a {
  color: #ffffff;
  text-decoration: none;
  transition: all .25s ease;
}

.footer-grid a:hover {
  color: #e6c57a;
  padding-left: 6px;
}

/* =========================
   DIVIDER
========================= */

.footer-bottom {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* =========================
   DIAMOND TEXT – FIX LEFT
========================= */

.footer-bottom-row {
  display: flex;
  justify-content: flex-start; /* <<< FIX LEFT */
  align-items: center;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #f1f1f1;
}

.footer-bottom-left .diamond {
  width: 7px;
  height: 7px;
  background: #e6c57a;
  transform: rotate(45deg);
  display: inline-block;
}

/* =========================
   COPYRIGHT
========================= */

.footer-bottom-center {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  opacity: .7;
}



  .footer-bottom-row {
    justify-content: flex-start; /* tetap kiri di mobile */
  }

  .footer-bottom-left {
    flex-wrap: wrap;
    gap: 10px;
  }
}
/* =========================
   SHINE ANIMATION (SLOW)
========================= */

/* =========================
   LOGO METAL / EMBOSS
========================= */

.logo-metal img {
  width: 200px; /* bebas sesuaikan */
  filter:
    brightness(1.08)
    contrast(1.15)
    saturate(0.9);
  position: relative;
}

/* EMBOSS SHADOW */
.logo-metal {
  position: relative;
}

.logo-metal::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.55),
    rgba(255,255,255,.05) 45%,
    rgba(0,0,0,.25) 75%
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* DEPTH / METAL CARVE */
.logo-metal img {
  filter:
    drop-shadow(0 2px 1px rgba(255,255,255,.35))
    drop-shadow(0 -1px 1px rgba(0,0,0,.45));
}
.footer-3col {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}

