/* VAZATEL Footer (scoped dengan prefix .vft- agar tidak tabrakan) */
.vft-footer {
  --vft-bg: #0b1220;
  --vft-text: #e5e7eb;
  --vft-muted: #cbd5e1;
  --vft-line: #334155;
  --vft-accent: #0ea5e9;
  background: var(--vft-bg);
  color: var(--vft-text);
  padding: 28px 0 16px;
}
.vft-container {
  width: min(1200px, 92%);
  margin-inline: auto;
}
.vft-grid {
  display: grid;
  gap: 24px;
  /* brand | links | legals | address | map (dipersempit) */
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1fr 0.7fr;
  align-items: start;
}

@media (max-width: 1024px) {
  .vft-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .vft-map {
    grid-column: 1 / -1;
  }
}
@media (max-width: 640px) {
  .vft-grid {
    grid-template-columns: 1fr;
  }
}

/* Brand */
.vft-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vft-logo {
  width: 170px;
  height: auto;
}
.vft-brandtext {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Columns */
.vft-col {
}
.vft-title {
  font-weight: 700;
  margin: 0 0 10px;
}
.vft-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.vft-list a {
  color: var(--vft-text);
  text-decoration: none;
}
.vft-list a:hover {
  color: var(--vft-accent);
}

/* Address */
.vft-address p {
  margin: 0;
  color: var(--vft-muted);
  line-height: 1.6;
}

/* Map tile */
.vft-mapbox {
  position: relative;
  background: #e5e7eb;
  border-radius: 16px;
  overflow: hidden;

  /* ⬇️ tinggi map responsif dan tidak kotak */
  height: clamp(160px, 24vh, 220px);
  aspect-ratio: auto;
}

.vft-mapbox iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.95) contrast(1.05) brightness(0.95);
}

.vft-maplabel {
  position: absolute;
  inset: auto 10px 10px auto;
  display: grid;
  place-items: center;
  width: 100px;
  height: 100px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.85);
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
@media (max-width: 640px) {
  .vft-grid {
    grid-template-columns: 1fr;
  }
  .vft-mapbox {
    height: 220px;
  } /* sedikit lebih tinggi agar mudah dilihat */
}

/* Separator & copyright */
.vft-sep {
  border: 0;
  height: 1px;
  background: var(--vft-line);
  margin: 18px 0 10px;
}
.vft-copy {
  text-align: center;
  color: #94a3b8;
  font-size: 13px;
}
